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
ScriptError
https://github.com/OSGeo/grass/blob/3b5184f3454c69afdf2844479403a5d8ef5d24e0/python/grass/script/__init__.py now lists the names for wildcard imports, in the __all__ variable. The text ScriptError is found 55 times. In some calls in gui, it is used like
__all__
gs.ScriptError
gcore.ScriptError
grass.ScriptError
from grass.script import core as grass
from grass.exceptions import ScriptError, CalledModuleError
What should be done? Technically, we show that ScriptError isn't listed from grass.script in the init file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
https://github.com/OSGeo/grass/blob/3b5184f3454c69afdf2844479403a5d8ef5d24e0/python/grass/script/__init__.py now lists the names for wildcard imports, in the
__all__
variable.The text
ScriptError
is found 55 times. In some calls in gui, it is used likegs.ScriptError
multiple timesgcore.ScriptError
in gui/wxpython/animation/dialogs.pygrass.ScriptError
in gui/wxpython/gui_core/forms.py, where grass isfrom grass.script import core as grass
ScriptError
in gui/wxpython/core/toolboxes.py and more, wherefrom grass.exceptions import ScriptError, CalledModuleError
is usedWhat should be done? Technically, we show that ScriptError isn't listed from grass.script in the init file.
The text was updated successfully, but these errors were encountered: