Skip to content

Commit

Permalink
Update src/PIL/PpmImagePlugin.py
Browse files Browse the repository at this point in the history
Remove commented line.

Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
  • Loading branch information
Piolie and radarhere committed Feb 5, 2021
1 parent 8fa9f6e commit b235493
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/PIL/PpmImagePlugin.py
Expand Up @@ -159,7 +159,6 @@ class PpmPlainDecoder(ImageFile.PyDecoder):

def _read_block(self, block_size=10 ** 6):
return bytearray(self.fd.read(block_size))
# return self.fd.read(block_size)

def _find_comment_end(self, block, start=0):
a = block.find(b"\n", start)
Expand Down

0 comments on commit b235493

Please sign in to comment.