Skip to content

Commit 1b3b154

Browse files
committed
fixup
1 parent c9db727 commit 1b3b154

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_mig_shared_fileio.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,12 @@
5151

5252
assert isinstance(DUMMY_BYTES, bytes)
5353

54+
5455
def as_unicode_string(value):
5556
assert isinstance(value, bytearray)
5657
return unicode(codecs.decode(value, 'utf8')) if PY2 else str(value, 'utf8')
5758

59+
5860
class TextFile:
5961
def __init__(self, path, mode='r'):
6062
self._file = None

0 commit comments

Comments
 (0)