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
Describe the bug
As in #11, an exception is needed that allows to import the qgis._3d module - as there is no other way to import this module in python.
qgis._3d
To Reproduce
import qgis._3d print(qgis._3d)
flake8 example.py
example.py:1:1: QGS102 Use 'import qgis.3d' instead of 'import qgis._3d'
However, as python does not allow module names beginning with a number character, there is no other way to import it like that.
Expected behavior
Absolute and relative imports from qgis._3d should be allowed by default.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
As in #11, an exception is needed that allows to import the
qgis._3d
module - as there is no other way to import this module in python.To Reproduce
flake8 example.py
. The output isHowever, as python does not allow module names beginning with a number character, there is no other way to import it like that.
Expected behavior
Absolute and relative imports from
qgis._3d
should be allowed by default.The text was updated successfully, but these errors were encountered: