Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 2 additions & 13 deletions minisky/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,10 @@
"""Aeronautics and geodesy tool library of MiniSky.

Bundles the utility modules used throughout the simulator: unit
conversions and the ISA atmosphere (aero), geodesy functions (geo, or the
compiled cgeo variant when available),
conversions and the ISA atmosphere (aero), geodesy functions (geo),
text/value converters (convert), named area shapes and inside-tests
(areafilter), the navigation database (navdata), and position-text
parsing (position).
"""

from typing import TYPE_CHECKING

if TYPE_CHECKING:
from . import geo as geo
else:
try:
from . import cgeo as geo # type: ignore[import-not-found]
except ImportError:
from . import geo

from . import aero, areafilter, convert, navdata, position # noqa: E402
from . import aero, areafilter, convert, geo, navdata, position
Loading
Loading