Skip to content

Commit

Permalink
Remove outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsadhwani committed May 8, 2022
1 parent f2ce482 commit d71ea1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion zx.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ def run_shell_print(command: str) -> None:
with create_shell_process(command) as stdout:
decoder = UTF8Decoder()
with open(stdout.fileno(), 'rb', closefd=False) as buff:
# read1 should be present on BinaryIO but it's not. Typeshed bug
for text in iter(buff.read1, b""):
print(decoder.decode(text), end="")

Expand Down

0 comments on commit d71ea1a

Please sign in to comment.