Closed Jaymon closed 6 years ago
from foo.cli import main_bar, main_che
with a structure like:
/foo __init__.py cli.py (contains main_bar and main_che functions)
It sees main_bar but not main_che, however this works:
main_bar
main_che
from foo.cli import main_bar from foo.cli import main_che
Likewise, when I have defined commands then just main doesn't work, not sure if this is by design, but I should look into that.
main
with a structure like:
It sees
main_bar
but notmain_che
, however this works:Likewise, when I have defined commands then just
main
doesn't work, not sure if this is by design, but I should look into that.