SXXXXXXX_PyBusMonitor1553/pybusmonitor1553/Grifo_E_1553lib/messages/messages.py
2026-01-20 12:31:23 +01:00

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('_')]