From ea9f1376a6450f8c8698d097bc954e2ee1fce24b Mon Sep 17 00:00:00 2001 From: Ziv <16467659+ziv1234@users.noreply.github.com> Date: Sat, 11 Apr 2020 21:20:19 +0300 Subject: [PATCH] Fix docstring in test_utils/aiohttp.py (#34040) * fix docstring * fixed empty spaces --- tests/test_util/aiohttp.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_util/aiohttp.py b/tests/test_util/aiohttp.py index 23112de5558..9b2a4380cae 100644 --- a/tests/test_util/aiohttp.py +++ b/tests/test_util/aiohttp.py @@ -322,6 +322,9 @@ class MockLongPollSideEffect: self.semaphore.release() def stop(self): - """Stop the current request and future ones. Avoids exception if there is someone waiting when exiting test.""" + """Stop the current request and future ones. + + This avoids an exception if there is someone waiting when exiting test. + """ self.stopping = True self.queue_response(exc=ClientError())