We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The __all__ list in __init__.py must contain strings with the names of modules not the modules itself.
__all__
__init__.py
https://docs.python.org/2/tutorial/modules.html#importing-from-a-package
The text was updated successfully, but these errors were encountered:
I think you mean names of functions, but yeah...
Sorry, something went wrong.
Fix checked in. It's interesting that nobody noticed that brain-fart before -- maybe most people start with one of the examples.
Thanks!
No branches or pull requests
The
__all__
list in__init__.py
must contain strings with the names of modules not the modules itself.https://docs.python.org/2/tutorial/modules.html#importing-from-a-package
The text was updated successfully, but these errors were encountered: