Skip to content

Commit 008dc9e

Browse files
authored
lint
1 parent af5c951 commit 008dc9e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

EInk_Autostereograms/code.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import digitalio
22
import busio
33
import board
4-
#import array
54
import displayio
65
import adafruit_imageload
76
import time
@@ -63,7 +62,7 @@ def display_bitmap(epd, filename):
6362
bmpHeight = read_le(f.read(4))
6463
# convert unsigned int to signed int in case there is a negative height
6564
if bmpHeight > 0x7fffffff:
66-
bmpHeight = bmpHeight - 4294967296
65+
bmpHeight = bmpHeight - 4294967296
6766
flip = True
6867
if bmpHeight < 0:
6968
bmpHeight = abs(bmpHeight)

0 commit comments

Comments
 (0)