aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtCore/duck_punching_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtCore/duck_punching_test.py')
-rw-r--r--sources/pyside6/tests/QtCore/duck_punching_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtCore/duck_punching_test.py b/sources/pyside6/tests/QtCore/duck_punching_test.py
index 2dc67b509..b6421b256 100644
--- a/sources/pyside6/tests/QtCore/duck_punching_test.py
+++ b/sources/pyside6/tests/QtCore/duck_punching_test.py
@@ -48,7 +48,7 @@ def MethodType(func, instance, instanceType):
class Duck(QObject):
def __init__(self):
- QObject.__init__(self)
+ super().__init__()
def childEvent(self, event):
QObject.childEvent(self, event)