I have a py file similar to this due to which there are no errors.
from world import acme
def make_stuff_happen():
acme.account.foo()
acme.subscription.bar()
make_stuff_happen()
But it works!
from world import acme
from world.acme import subscription
def make_stuff_happen():
acme.account.foo()
subscription.bar()
make_stuff_happen()
All I can say is WTF, what could be causing this? Behavior must be at least consistent both for acme.accountand acme.subscription.
Thank!
Update - acme folder folder structure:
acme
|
|
|
|
|
|
`
And __init__.pycompletely empty.
source
share