Details
-
Suggestion
-
Resolution: Fixed
-
Not Evaluated
-
None
-
None
-
3c66c456a (dev), f3b721534 (6.8)
Description
Reported from PySide6-stubs
For some reason, the signature of QObject.inherits() is incorrect:
def inherits(self, classname: bytes | bytearray | memoryview, /) -> bool: ...
Correct signature is :
def inherits(self, classname: str, /) -> bool: ...
This bug is present for several other Qt functions or methods by the way