Skip to content

Commit 2f7fbb2

Browse files
committed
Remove unnecessary blank lines.
1 parent 8690397 commit 2f7fbb2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Lib/_pyio.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2523,12 +2523,10 @@ def read(self, size=None):
25232523
size = size_index()
25242524
decoder = self._decoder or self._get_decoder()
25252525
if size < 0:
2526-
25272526
chunk = self.buffer.read()
25282527
if chunk is None:
25292528
raise BlockingIOError("Unexpected None encountered. This may be due to non-blocking I/O or an issue "
25302529
"with the underlying I/O implementation.")
2531-
25322530
# Read everything.
25332531
result = (self._get_decoded_chars() +
25342532
decoder.decode(chunk, final=True))

0 commit comments

Comments
 (0)