Skip to content

Commit 0132c78

Browse files
committed
remove memoryview adjust variable
1 parent 872e181 commit 0132c78

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

adafruit_imageload/png.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ def load( # noqa: PLR0912, PLR0915, Too many branches, Too many statements
107107
if mode == 3: # indexed
108108
bmp = bitmap(width, height, 1 << depth)
109109
pixels_per_byte = 8 // depth
110-
# Adjust for Displayio.Bitmap filler to scanline at 4-byte boundry
111-
filladj = (4 - (scanline % 4)) % 4
112110
src = 1
113111
src_b = 1
114112
pixmask = (1 << depth) - 1

0 commit comments

Comments
 (0)