diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-11-22 15:21:00 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-12-31 16:10:47 -0500 |
commit | f1c17458c1ac65869c7f0621b42cb6eec90dde39 (patch) | |
tree | 22fe82819ca3110b41229abed2abd09466d9c12a | |
parent | 15d5c464ebc9ce3646f468c5e9e8ecf04be79dee (diff) | |
download | paramiko-f1c17458c1ac65869c7f0621b42cb6eec90dde39.tar.gz |
Flake8
-rw-r--r-- | tests/test_auth.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py index 1cb41b52..99f41ecc 100644 --- a/tests/test_auth.py +++ b/tests/test_auth.py @@ -20,18 +20,12 @@ Some unit tests for authenticating over a Transport. """ -import sys -import threading -import unittest - from paramiko import ( - Transport, RSAKey, DSSKey, BadAuthenticationType, - AuthenticationException, + DSSKey, BadAuthenticationType, AuthenticationException, ) from pytest import raises -from ._loop import LoopSocket -from ._util import _support, slow, NullServer, _pwd +from ._util import _support, slow, _pwd class TestEdgeCaseFailures: |