summaryrefslogtreecommitdiff
path: root/swiftclient/multithreading.py
diff options
context:
space:
mode:
Diffstat (limited to 'swiftclient/multithreading.py')
-rw-r--r--swiftclient/multithreading.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/swiftclient/multithreading.py b/swiftclient/multithreading.py
index cf72360..eaccec6 100644
--- a/swiftclient/multithreading.py
+++ b/swiftclient/multithreading.py
@@ -19,7 +19,7 @@ from concurrent.futures import ThreadPoolExecutor
from queue import PriorityQueue
-class OutputManager(object):
+class OutputManager:
"""
One object to manage and provide helper functions for output.
@@ -108,7 +108,7 @@ class OutputManager(object):
self.error_print_pool.submit(self._print_error, msg, count=0)
-class MultiThreadingManager(object):
+class MultiThreadingManager:
"""
One object to manage context for multi-threading. This should make
bin/swift less error-prone and allow us to test this code.