python-mastery/Solutions/9_4/structly/__init__.py

10 lines
195 B
Python
Raw Normal View History

2023-07-17 03:21:00 +02:00
# structly/__init__.py
from .structure import *
from .reader import *
from .tableformat import *
__all__ = [ *structure.__all__,
*reader.__all__,
*tableformat.__all__ ]