summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2019-09-04 11:21:04 -0700
committerTim Burke <tim.burke@gmail.com>2019-09-04 11:21:04 -0700
commita0f0aedb41ba790266cca678fc3bd91696888835 (patch)
treec302b8316262ae4ebb34f8676aa143d5162a3114
parent00efcfc9cabcac2a213165a8bdad131816d705c3 (diff)
downloadpython-swiftclient-a0f0aedb41ba790266cca678fc3bd91696888835.tar.gz
docs: Fix warning treated as error
Change-Id: I669533334419e94ca925e859f2b0d5d2afe9f7f1
-rw-r--r--swiftclient/multithreading.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/swiftclient/multithreading.py b/swiftclient/multithreading.py
index fcf0ed9..f128790 100644
--- a/swiftclient/multithreading.py
+++ b/swiftclient/multithreading.py
@@ -168,6 +168,12 @@ class ConnectionThreadPoolExecutor(ThreadPoolExecutor):
We will only create as many connections as are required concurrently.
"""
def __init__(self, create_connection, max_workers):
+ """
+ Initializes a new ThreadPoolExecutor instance.
+
+ :param create_connection: callable to use to create new connections
+ :param max_workers: the maximum number of threads that can be used
+ """
self._connections = PriorityQueue()
self._create_connection = create_connection
for p in range(0, max_workers):