diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-09 20:59:37 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-09 23:26:00 -0500 |
commit | 814b6bc7a7786c7ae5e6a0f48b9ae76d209aaade (patch) | |
tree | d0ed42ca5ca111a90206e1cf59cc7bfae5a5e40b /tests/test_pkey.py | |
parent | 3e87f05b57213cc539670f85ac7ea8ccddb9e5c4 (diff) |
Update StringIO
Diffstat (limited to 'tests/test_pkey.py')
-rw-r--r-- | tests/test_pkey.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_pkey.py b/tests/test_pkey.py index bc1503ab..45d1ee96 100644 --- a/tests/test_pkey.py +++ b/tests/test_pkey.py @@ -26,6 +26,7 @@ import os import stat from binascii import hexlify from hashlib import md5 +from io import StringIO from paramiko import ( RSAKey, @@ -36,7 +37,7 @@ from paramiko import ( util, SSHException, ) -from paramiko.py3compat import StringIO, b, bytes, PY2 +from paramiko.py3compat import b, bytes, PY2 from paramiko.common import o600, byte_chr from cryptography.exceptions import UnsupportedAlgorithm |