Skip to content

Commit

Permalink
Merge pull request #7623 from hugovk/cleanup-imagemath-inline-isinstance
Browse files Browse the repository at this point in the history
ImageMath: Inline `isinstance` check
  • Loading branch information
radarhere committed Dec 18, 2023
2 parents a835bfb + 368c05c commit 67890b2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/PIL/ImageMath.py
Expand Up @@ -20,10 +20,6 @@
from . import Image, _imagingmath


def _isconstant(v):
return isinstance(v, (int, float))


class _Operand:
"""Wraps an image operand, providing standard operators"""

Expand All @@ -43,7 +39,7 @@ def __fixup(self, im1):
raise ValueError(msg)
else:
# argument was a constant
if _isconstant(im1) and self.im.mode in ("1", "L", "I"):
if isinstance(im1, (int, float)) and self.im.mode in ("1", "L", "I"):
return Image.new("I", self.im.size, im1)
else:
return Image.new("F", self.im.size, im1)
Expand Down

0 comments on commit 67890b2

Please sign in to comment.