-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
no-member with Qt signals using PySide6 #5378
Comments
I think the check given in pylint-dev/astroid#900 (comment) would fix this. Specifically line 4 of the code snippet. is_pyside_node = node.qname().partition(".")[0] in ("PySide2", "PySide6") That pull request might need to be adopted with this in mind, or needs to be merged first, for this to be added, I think. |
I am encountering the same issue with |
I can confirm that check fixed the problem on my end. +1 to have the fix merged in PR 900. |
Duplicate of #4040 (closing now as it's difficult to link two pylint issues to an astroid PR for auto-closing later) |
Bug description
Exactly the same as #2585.
Configuration
Create signal_test.py containing:
Command used
pylint .\signal_test.py --extension-pkg-whitelist=PySide6
Pylint output
Expected behavior
No Errors
Pylint version
OS / Environment
Win 10
As mentioned, this was addressed in #2585 for PySide2
Additional dependencies
PySide6 6.2.0
The text was updated successfully, but these errors were encountered: