We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7842ebb commit 128b994Copy full SHA for 128b994
1 file changed
internal_filesystem/lib/mpos/__init__.py
@@ -43,6 +43,7 @@
43
44
# Utility modules
45
from . import apps
46
+from . import bootloader
47
from . import ui
48
from . import config
49
from . import net
@@ -54,13 +55,6 @@
54
55
from . import audio
56
from . import hardware
57
-# Lazy import to avoid circular dependencies
58
-def __getattr__(name):
59
- if name == 'bootloader':
60
- from . import bootloader
61
- return bootloader
62
- raise AttributeError(f"module '{__name__}' has no attribute '{name}'")
63
-
64
__all__ = [
65
# Core framework
66
"App",
0 commit comments