15 lines
387 B
Python
15 lines
387 B
Python
"""
|
|
Compatibility shim for legacy imports of the form
|
|
`...Grifo_E_1553lib.messages.messages`.
|
|
|
|
This module re-exports the names provided by the package's
|
|
`__init__.py` so older code that imports the submodule keeps working.
|
|
"""
|
|
|
|
from .__init__ import * # noqa: F401,F403
|
|
|
|
try:
|
|
__all__ = __all__
|
|
except NameError:
|
|
__all__ = [n for n in globals().keys() if not n.startswith('_')]
|