Skip to content

Commit da3ec08

Browse files
authored
Merge pull request #7499 from radarhere/items
2 parents 0a3c8c2 + 3652f43 commit da3ec08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PIL/ImageMath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def eval(expression, _dict={}, **kw):
239239
args = ops.copy()
240240
args.update(_dict)
241241
args.update(kw)
242-
for k, v in list(args.items()):
242+
for k, v in args.items():
243243
if hasattr(v, "im"):
244244
args[k] = _Operand(v)
245245

0 commit comments

Comments
 (0)