diff options
Diffstat (limited to 'sources/pyside6/tests/pysidetest/property_python_test.py')
| -rw-r--r-- | sources/pyside6/tests/pysidetest/property_python_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/pysidetest/property_python_test.py b/sources/pyside6/tests/pysidetest/property_python_test.py index 4b55ee311..6e19e92a0 100644 --- a/sources/pyside6/tests/pysidetest/property_python_test.py +++ b/sources/pyside6/tests/pysidetest/property_python_test.py @@ -75,7 +75,7 @@ class PropertyDel(PropertyBase): class BaseClass(QObject): def __init__(self): - QObject.__init__(self) + super().__init__() self._spam = 5 @@ -127,7 +127,7 @@ class PropertySubNewGetter(BaseClass): class PropertyNewGetter(QObject): def __init__(self): - QObject.__init__(self) + super().__init__() @Property(object) def spam(self): |
