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
TYPE_CHECKING
from qtpy import QtCore import typing as t if t.TYPE_CHECKING: from PySide6 import QtCore class MyThread(QtCore.QThread): pass
In this example, unimport suggests getting rid of the first QtCore import, but this causes the code to fail.
unimport
QtCore
Tested on unimport 1.2.1
unimport 1.2.1
The text was updated successfully, but these errors were encountered:
Thanks for letting me know, I'll work on it.
Sorry, something went wrong.
hakancelikdev
When branches are created from issues, their pull requests are automatically linked.
In this example,
unimport
suggests getting rid of the firstQtCore
import, but this causes the code to fail.Tested on
unimport 1.2.1
The text was updated successfully, but these errors were encountered: