From 08eb98d63f5f03172ce4734096e7013a56c560ac Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 31 Aug 2022 14:21:16 -0400 Subject: Add missing comma to pass style checks --- tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): """ -- cgit v1.2.1