6 lines
139 B
Python
6 lines
139 B
Python
print(f' Importing {__name__} '.center(50, '='))
|
|
|
|
from .foo import Foo
|
|
from .my_sub_pkg.bar import Bar
|
|
|
|
print(' Done '.center(50, '=')) |