aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py b/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
index 45a3a608a..adf8b8045 100644
--- a/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
+++ b/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
@@ -48,13 +48,13 @@ from PySide6.QtCore import QObject, Signal, Slot
class Mixin(object):
mixinSignal = Signal()
def __init__(self, *args, **kwargs):
- super(Mixin,self).__init__(*args, **kwargs)
+ super().__init__(*args, **kwargs)
class MixinTwo(Mixin):
mixinTwoSignal = Signal()
def __init__(self, *args, **kwargs):
- super(MixinTwo,self).__init__(*args, **kwargs)
+ super().__init__(*args, **kwargs)
self.mixinTwoSlotCalled = False
@Slot()
@@ -65,7 +65,7 @@ class MixinThree(object):
mixinThreeSignal = Signal()
def __init__(self, *args, **kwargs):
- super(MixinThree,self).__init__(*args, **kwargs)
+ super().__init__(*args, **kwargs)
self.mixinThreeSlotCalled = False
@Slot()
@@ -76,7 +76,7 @@ class Derived(Mixin, QObject):
derivedSignal = Signal(str)
def __init__(self):
- super(Derived,self).__init__()
+ super().__init__()
self.derivedSlotCalled = False
self.derivedSlotString = ''
@@ -89,7 +89,7 @@ class MultipleDerived(MixinTwo, MixinThree, Mixin, QObject):
derivedSignal = Signal(str)
def __init__(self):
- super(MultipleDerived,self).__init__()
+ super().__init__()
self.derivedSlotCalled = False
self.derivedSlotString = ''