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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtCore/bug_656.py b/sources/pyside6/tests/QtCore/bug_656.py
index f0539c700..d58261dc2 100644
--- a/sources/pyside6/tests/QtCore/bug_656.py
+++ b/sources/pyside6/tests/QtCore/bug_656.py
@@ -39,9 +39,10 @@ from PySide6.QtCore import QCoreApplication
class CoreApp(QCoreApplication):
- def __init__(self,*args):
+ def __init__(self, *args):
super().__init__(*args)
# It shouldn't crash after the __init__ call
+
import sys
app = CoreApp(sys.argv)