Skip to content

Commit 51fdef1

Browse files
committed
nodebug
1 parent 0f8584f commit 51fdef1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

examples/epd_bitmap.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ def display_bitmap(epd, filename):
8484
rowSize = (bmpWidth * 3 + 3) & ~3 # 32-bit line boundary
8585

8686
for row in range(bmpHeight): # For each scanline...
87-
print(row)
8887
if flip: # Bitmap is stored bottom-to-top order (normal BMP)
8988
pos = bmpImageoffset + (bmpHeight - 1 - row) * rowSize
9089
else: # Bitmap is stored top-to-bottom

0 commit comments

Comments
 (0)