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 main __init__.py script lazily imports everything from the modules with an * like
__init__.py
*
from delineation import *
This causes unnecessary objects to load when executing tasks and makes importing anything from ScrollStats take several seconds.
Go through the __init__.py files and explicitly import modules and other resources
The text was updated successfully, but these errors were encountered:
a-vanderheiden
No branches or pull requests
Problem
The main
__init__.py
script lazily imports everything from the modules with an*
likeThis causes unnecessary objects to load when executing tasks and makes importing anything from ScrollStats take several seconds.
Solution
Go through the
__init__.py
files and explicitly import modules and other resourcesThe text was updated successfully, but these errors were encountered: