From 5195178658189483d6e6ee23911063e5189e1609 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 13 Jun 2023 19:58:52 +0200 Subject: [PATCH] Continued: - first load main packages, then sub --- fba/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fba/__init__.py b/fba/__init__.py index d22410d..155bf76 100644 --- a/fba/__init__.py +++ b/fba/__init__.py @@ -14,6 +14,7 @@ # along with this program. If not, see . __all__ = [ + # Main packages: 'blacklist', 'boot', 'commands', @@ -21,8 +22,9 @@ __all__ = [ 'csrf', 'federation', 'fba', - 'helpers', - 'model', 'network', + # Sub packages: + 'helpers', + 'models', 'networks', ] -- 2.39.5