Skip to content

Commit 238f5ac

Browse files
authored
Another tab fix
1 parent 67cff5a commit 238f5ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_imageload/bmp/indexed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def load(file, width, height, data_start, colors, color_depth, *, bitmap=None, p
6161

6262
#convert unsigned int to signed int when height is negative
6363
if height > 0x7fffffff:
64-
height = height - 4294967296
64+
height = height - 4294967296
6565
theight = height
6666
if theight < 0:
6767
theight = 0 - theight

0 commit comments

Comments
 (0)