mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 10:20:52 +02:00
11 lines
262 B
Python
11 lines
262 B
Python
"""
|
|
categories: Core,import
|
|
description: __all__ is unsupported in __init__.py in MicroPython.
|
|
cause: Not implemented.
|
|
workaround: Manually import the sub-modules directly in __init__.py using ``from . import foo, bar``.
|
|
"""
|
|
|
|
from modules3 import *
|
|
|
|
foo.hello()
|