Skip to content

Commit

Permalink
Added space before colon
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 f7d40ce commit e01354a
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 @@ -67,7 +67,7 @@ def minmax(histogram):
def _getcount(self):
"""Get total number of pixels in each layer"""

return [sum(self.h[i: i + 256]) for i in range(0, len(self.h), 256)]
return [sum(self.h[i : i + 256]) for i in range(0, len(self.h), 256)]

def _getsum(self):
"""Get sum of all pixels in each layer"""
Expand Down

0 comments on commit e01354a

Please sign in to comment.