diff options
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_836.py')
-rw-r--r-- | sources/pyside6/tests/QtWidgets/bug_836.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_836.py b/sources/pyside6/tests/QtWidgets/bug_836.py index f985e4615..4523c525c 100644 --- a/sources/pyside6/tests/QtWidgets/bug_836.py +++ b/sources/pyside6/tests/QtWidgets/bug_836.py @@ -50,7 +50,7 @@ class Mixin3(object): class MainWindow(Mixin1, Mixin2, Mixin3, QFrame): def __init__(self): - super(MainWindow, self).__init__() + super().__init__() def main(): app = QApplication([]) |