6 lines
157 B
Python
6 lines
157 B
Python
print(f' Importing {__name__} '.center(50, '='))
|
|
|
|
from .motion import Motion
|
|
from .my_sub_pkg.hello import HelloWorldSub
|
|
|
|
print(' Done '.center(50, '=')) |