aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_525.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_525.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_525.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_525.py b/sources/pyside6/tests/QtWidgets/bug_525.py
index d35b41c0a..573e9bf46 100644
--- a/sources/pyside6/tests/QtWidgets/bug_525.py
+++ b/sources/pyside6/tests/QtWidgets/bug_525.py
@@ -40,7 +40,7 @@ from PySide6.QtWidgets import QMenu
class M2(QMenu):
def __init__(self,parent=None):
- super(M2,self).__init__(parent)
+ super().__init__(parent)
self.setTitle(self.tr("M2"))
class TestMenuDerivedClass(unittest.TestCase):