summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-09 21:42:27 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-09 23:26:00 -0500
commit76675c7c471c14ec0b3288cec2beaf400b757480 (patch)
treec9625e8e31c6f42d947b0aa01b37df4d82803d30 /tests
parent74eae059e2ae71044e31a580bc4ede1057c0053b (diff)
downloadparamiko-76675c7c471c14ec0b3288cec2beaf400b757480.tar.gz
Update BytesIO
Diffstat (limited to 'tests')
-rw-r--r--tests/test_file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_file.py b/tests/test_file.py
index d4062c02..cbee62ef 100644
--- a/tests/test_file.py
+++ b/tests/test_file.py
@@ -22,10 +22,10 @@ Some unit tests for the BufferedFile abstraction.
import unittest
import sys
+from io import BytesIO
from paramiko.common import linefeed_byte, crlf, cr_byte
from paramiko.file import BufferedFile
-from paramiko.py3compat import BytesIO
from .util import needs_builtin