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
When you do
from horton import * grid = ...
there is a name collision that gets picked up by PyLint. One way to avoid this, is to add the following code to every __init__.py file:
__init__.py
from types import ModuleType for key, val in globals().items(): if isinstance(val, ModuleType): del globals()[key] del ModuleType
The text was updated successfully, but these errors were encountered:
P.S. This code can be put in a function.
Sorry, something went wrong.
tovrstra
No branches or pull requests
When you do
there is a name collision that gets picked up by PyLint. One way to avoid this, is to add the following code to every
__init__.py
file:The text was updated successfully, but these errors were encountered: