Skip to content

Commit

Permalink
Fixed spacing in _getextrema method
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Florath <[email protected]>
  • Loading branch information
florath committed Dec 1, 2023
1 parent 1b8f9d3 commit 7762dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIL/ImageStat.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def minmax(histogram):

v = []
for i in range(0, len(self.h), 256):
v.append(minmax(self.h[i:i+256]))
v.append(minmax(self.h[i : i + 256]))
return v

def _getcount(self):
Expand Down

0 comments on commit 7762dd3

Please sign in to comment.