Skip to content

Commit 90dc8d1

Browse files
committed
fix lint
1 parent 4d42aa7 commit 90dc8d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_framebuf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def image(self, img):
286286
index = 0
287287
for x in range(self.width): # yes this double loop is slow,
288288
for y in range(self.height): # but these displays are small!
289-
if pixels[(x,y)]:
289+
if pixels[(x, y)]:
290290
self.pixel(x, y, 1) # only write if pixel is true
291291

292292
# MicroPython basic bitmap font renderer.

0 commit comments

Comments
 (0)