Skip to content

Commit bd217ce

Browse files
committed
linting
1 parent 38ea03d commit bd217ce

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/uc8151d_simpletest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@
3737

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

4345
display.show(g)

0 commit comments

Comments
 (0)