Skip to content

Commit ba2b01f

Browse files
committed
Fix according to CI's coding style demands
1 parent 5952b34 commit ba2b01f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/st7789_240x240_simpletest_Waveshare_PicoLCD_1_3.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@
2626
display_bus = displayio.FourWire(spi, command=tft_dc, chip_select=tft_cs, reset=tft_rst)
2727

2828
display = ST7789(
29-
display_bus, rotation=270, width=240, height=240, rowstart=80, backlight_pin=backlight
29+
display_bus,
30+
rotation=270,
31+
width=240,
32+
height=240,
33+
rowstart=80,
34+
backlight_pin=backlight,
3035
)
3136

3237
# Make the display context

0 commit comments

Comments
 (0)