Skip to content

Commit

Permalink
Merge pull request #7499 from radarhere/items
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Oct 28, 2023
2 parents 0a3c8c2 + 3652f43 commit da3ec08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIL/ImageMath.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def eval(expression, _dict={}, **kw):
args = ops.copy()
args.update(_dict)
args.update(kw)
for k, v in list(args.items()):
for k, v in args.items():
if hasattr(v, "im"):
args[k] = _Operand(v)

Expand Down

0 comments on commit da3ec08

Please sign in to comment.