aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtCore/bug_656.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtCore/bug_656.py')
-rw-r--r--sources/pyside6/tests/QtCore/bug_656.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtCore/bug_656.py b/sources/pyside6/tests/QtCore/bug_656.py
index 3feaeaeaf..f0539c700 100644
--- a/sources/pyside6/tests/QtCore/bug_656.py
+++ b/sources/pyside6/tests/QtCore/bug_656.py
@@ -40,7 +40,7 @@ from PySide6.QtCore import QCoreApplication
class CoreApp(QCoreApplication):
def __init__(self,*args):
- super(CoreApp,self).__init__(*args)
+ super().__init__(*args)
# It shouldn't crash after the __init__ call
import sys