Skip to content

Commit da70d6b

Browse files
committed
Fixed pep8 error
1 parent 2403197 commit da70d6b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

stdimage/models.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ def render_variation(cls, file_name, variation, replace=False,
9292
)
9393

9494
size = variation['width'], variation['height']
95-
size = tuple(int(i) if i != float('inf') else i for i in size)
95+
size = tuple(int(i) if i != float('inf') else i
96+
for i in size)
9697
if variation['crop']:
9798
img = ImageOps.fit(
9899
img,

0 commit comments

Comments
 (0)