summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Salvatore <mike.s.salvatore@gmail.com>2022-08-31 14:21:16 -0400
committerMike Salvatore <mike.s.salvatore@gmail.com>2023-03-02 13:30:24 -0500
commit08eb98d63f5f03172ce4734096e7013a56c560ac (patch)
treeccf010de041e1c53d4dc700aaf6d598e80249bce
parent92515a6c54f6a5767b03c8ed4af88773c2922038 (diff)
downloadparamiko-08eb98d63f5f03172ce4734096e7013a56c560ac.tar.gz
Add missing comma to pass style checks
-rw-r--r--tests/test_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index a991478a..21ecd72a 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -567,7 +567,7 @@ class SSHClientTest(ClientTest):
@patch.object(
paramiko.Channel,
"_set_remote_channel",
- lambda *args, **kwargs: time.sleep(100)
+ lambda *args, **kwargs: time.sleep(100),
)
def test_channel_timeout(self):
"""