We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
from PySide6.QtCore import QObject, Property class MyObject(QObject): def __init__(self, startval=42): QObject.__init__(self) self.ppval = startval @Property(int) def pp(self): return self.ppval @pp.setter def pp(self, val): self.ppval = val obj = MyObject() obj.pp = 47 print(obj.pp)
The text was updated successfully, but these errors were encountered:
Thanks for the report.
Which IDE are you using ?
Sorry, something went wrong.
I'll look into it but this looks difficult to address
Thanks for the report. Which IDE are you using ?
VSCODE with pylance
No branches or pull requests
The text was updated successfully, but these errors were encountered: