aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtCore/qproperty_decorator.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtCore/qproperty_decorator.py')
-rw-r--r--sources/pyside6/tests/QtCore/qproperty_decorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtCore/qproperty_decorator.py b/sources/pyside6/tests/QtCore/qproperty_decorator.py
index 021bbed56..3d9503272 100644
--- a/sources/pyside6/tests/QtCore/qproperty_decorator.py
+++ b/sources/pyside6/tests/QtCore/qproperty_decorator.py
@@ -40,7 +40,7 @@ from PySide6.QtCore import QObject, Property
class MyObject(QObject):
def __init__(self):
- QObject.__init__(self)
+ super().__init__()
self._value = None
@Property(int)