Skip to content

Commit dde5d39

Browse files
committed
pre-commit formatting
1 parent 42cfb2b commit dde5d39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_imageload/png.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def load( # noqa: PLR0912, PLR0915, Too many branches, Too many statements
109109
mem = memoryview(bmp)
110110
for y in range(height):
111111
# Adjust for Displayio.Bitmap filler to scanline at byte boundry
112-
filladj = (y * ((4 - (width % 4)) % 4))
112+
filladj = y * ((4 - (width % 4)) % 4)
113113
dst = y * scanline + filladj
114114
src = y * (scanline + 1) + 1
115115
if depth < 5:

0 commit comments

Comments
 (0)