Skip to content

Commit 38e2d8e

Browse files
author
Melissa LeBlanc-Williams
committed
More Linting
1 parent 3e79ae2 commit 38e2d8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ra8875_bmptest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
display.init()
2828
display.fill(WHITE)
2929

30-
def color555(self, rgb):
30+
def color555(rgb):
3131
return (rgb & 0x001F) << 11 | (rgb & 0x0700) | (rgb & 0x0060) << 1 | 0x20 | (rgb & 0xF800) >> 11
3232

3333
class BMP(object):

0 commit comments

Comments
 (0)