Files
python-mastery/Solutions/9_3/structly/tableformat/__init__.py
David Beazley 7d4b30154a Initial commit
2023-07-16 20:21:00 -05:00

6 lines
117 B
Python

# __init__.py
from .formatter import print_table, create_formatter
__all__ = [ 'print_table', 'create_formatter' ]