aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/properties_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/pysidetest/properties_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/properties_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/pysidetest/properties_test.py b/sources/pyside6/tests/pysidetest/properties_test.py
index 9333feb75..abd0b90b6 100644
--- a/sources/pyside6/tests/pysidetest/properties_test.py
+++ b/sources/pyside6/tests/pysidetest/properties_test.py
@@ -45,7 +45,7 @@ class TestObject(QObject):
valueChanged = Signal()
def __init__(self, parent=None):
- super(TestObject, self).__init__(parent)
+ super().__init__(parent)
self._value = -1
self.valueChanged.connect(self._changed)
self.getter_called = 0
@@ -75,7 +75,7 @@ class TestDerivedObject(QStringListModel):
valueChanged = Signal()
def __init__(self, parent=None):
- super(TestDerivedObject, self).__init__(parent)
+ super().__init__(parent)
self._value = -1
self.valueChanged.connect(self._changed)
self.getter_called = 0