Skip to content

Commit f4c9918

Browse files
committed
linting part 2
1 parent bd217ce commit f4c9918

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/uc8151d_simpletest.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Adafruit Flexible 2.9" Monochrome
1010
* https://www.adafruit.com/product/4262
1111
"""
12+
# pylint: disable=no-member
1213

1314
import time
1415
import board
@@ -37,9 +38,7 @@
3738

3839
with open("/display-ruler.bmp", "rb") as f:
3940
pic = displayio.OnDiskBitmap(f)
40-
t = displayio.TileGrid(
41-
pic, pixel_shader=pic.pixel_shader
42-
) # pylint: disable=no-member
41+
t = displayio.TileGrid(pic, pixel_shader=pic.pixel_shader)
4342
g.append(t)
4443

4544
display.show(g)

0 commit comments

Comments
 (0)