From dad99faffc80b66aea65149fb6d2e97db704b407 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Wed, 4 Sep 2019 11:21:04 -0700 Subject: [PATCH] docs: Fix warning treated as error Change-Id: I669533334419e94ca925e859f2b0d5d2afe9f7f1 (cherry picked from commit a0f0aedb41ba790266cca678fc3bd91696888835) --- swiftclient/multithreading.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/swiftclient/multithreading.py b/swiftclient/multithreading.py index fcf0ed95..f128790e 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):