aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtCore/qthread_prod_cons_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtCore/qthread_prod_cons_test.py')
-rw-r--r--sources/pyside6/tests/QtCore/qthread_prod_cons_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/pyside6/tests/QtCore/qthread_prod_cons_test.py b/sources/pyside6/tests/QtCore/qthread_prod_cons_test.py
index 586a484fe..339c0a7d6 100644
--- a/sources/pyside6/tests/QtCore/qthread_prod_cons_test.py
+++ b/sources/pyside6/tests/QtCore/qthread_prod_cons_test.py
@@ -49,7 +49,7 @@ class Bucket(QObject):
'''Dummy class to hold the produced values'''
def __init__(self, max_size=10, *args):
#Constructor which receives the max number of produced items
- super(Bucket, self).__init__(*args)
+ super().__init__(*args)
self.data = []
self.max_size = 10
@@ -66,7 +66,7 @@ class Producer(QThread):
def __init__(self, bucket, *args):
#Constructor. Receives the bucket
- super(Producer, self).__init__(*args)
+ super().__init__(*args)
self.runs = 0
self.bucket = bucket
self.production_list = []
@@ -87,7 +87,7 @@ class Consumer(QThread):
'''Consumer thread'''
def __init__(self, bucket, *args):
#Constructor. Receives the bucket
- super(Consumer, self).__init__(*args)
+ super().__init__(*args)
self.runs = 0
self.bucket = bucket
self.consumption_list = []