Skip to content

Commit bfa8ae5

Browse files
Fixed more Lint issue
1 parent 52c81fd commit bfa8ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ascii_image/ascii_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
img = Image.open(inputImagePath)
2727

2828
wid, height = img.size
29-
img = img.resize((widd, int(widd * ((height * 9) / (wid * 20)))))
29+
img = img.resize((widd, int(widd * ((height * 9) / (wid * 20)))))
3030
wid, height = img.size
3131

3232
img = img.convert("L")

0 commit comments

Comments
 (0)