diff options
Diffstat (limited to 'tests/test_auth.py')
-rw-r--r-- | tests/test_auth.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py index 4fe6a325..58b2f44f 100644 --- a/tests/test_auth.py +++ b/tests/test_auth.py @@ -25,9 +25,10 @@ import threading import unittest from time import sleep -from paramiko import Transport, ServerInterface, RSAKey, DSSKey, \ - BadAuthenticationType, InteractiveQuery, \ - AuthenticationException +from paramiko import ( + Transport, ServerInterface, RSAKey, DSSKey, BadAuthenticationType, + InteractiveQuery, AuthenticationException, +) from paramiko import AUTH_FAILED, AUTH_PARTIALLY_SUCCESSFUL, AUTH_SUCCESSFUL from paramiko.py3compat import u from tests.loop import LoopSocket |