aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_668.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_668.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_668.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_668.py b/sources/pyside6/tests/QtWidgets/bug_668.py
index 8b03ebbdb..167a19ce6 100644
--- a/sources/pyside6/tests/QtWidgets/bug_668.py
+++ b/sources/pyside6/tests/QtWidgets/bug_668.py
@@ -43,7 +43,7 @@ from PySide6.QtWidgets import QApplication, QFileSystemModel, QMainWindow, QTree
class A(QMainWindow):
def __init__(self, parent=None):
- super(A, self).__init__(parent)
+ super().__init__(parent)
a = QFileSystemModel(self)
a.setRootPath(QDir.homePath())