summaryrefslogtreecommitdiff
path: root/paramiko/file.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-09 22:47:21 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-09 23:26:00 -0500
commit9e83ca9d8acb5e9d41d45d46a0339e2f633e2dea (patch)
tree6cb926091b66800f98e75bff931db836bda7a4be /paramiko/file.py
parent7b8106e67c51e71fc4074f7851bbaebed4d5be0c (diff)
downloadparamiko-9e83ca9d8acb5e9d41d45d46a0339e2f633e2dea.tar.gz
Move b, u helpers to util module for now
Later on we can likely nuke many uses of these
Diffstat (limited to 'paramiko/file.py')
-rw-r--r--paramiko/file.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/file.py b/paramiko/file.py
index eeb2b8c6..51a6d409 100644
--- a/paramiko/file.py
+++ b/paramiko/file.py
@@ -24,9 +24,9 @@ from paramiko.common import (
linefeed_byte,
cr_byte_value,
)
-from paramiko.py3compat import u, bytes_types, text_type
+from paramiko.py3compat import bytes_types, text_type
-from paramiko.util import ClosingContextManager
+from paramiko.util import ClosingContextManager, u
class BufferedFile(ClosingContextManager):