Fix pydcs extension packages.

pydcs_extensions.__init__ wasn't actually doing anything because without
an __init__.py each of these "packages" was empty. This has been working
by accident because of ai_flight_planner_db.py.
This commit is contained in:
Dan Albert 2023-04-26 22:00:05 -07:00
parent f86709ebd0
commit 7ddfc5e5ad
10 changed files with 10 additions and 1 deletions

View File

@ -6,9 +6,9 @@ from .frenchpack import *
from .hercules import *
from .highdigitsams import *
from .jas39 import *
from .ov10a import *
from .su57 import *
from .uh60l import *
from .ov10a import *
def load_mods() -> None:

View File

@ -0,0 +1 @@
from .a4ec import *

View File

@ -0,0 +1 @@
from .f104 import *

View File

@ -0,0 +1 @@
from .f22a import *

View File

@ -0,0 +1 @@
from .f4 import *

View File

@ -0,0 +1 @@
from .hercules import *

View File

@ -0,0 +1 @@
from .jas39 import *

View File

@ -0,0 +1 @@
from .ov10a import *

View File

@ -0,0 +1 @@
from .su57 import *

View File

@ -0,0 +1 @@
from .uh60l import *