another pylint fix
2nd attempt to fix pylint
This commit is contained in:
parent
b4601f92aa
commit
c38a83ae3a
1 changed files with 5 additions and 6 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# SPDX-FileCopyrightText: 2025 Liz Clark for Adafruit Industries
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
# SPDX-FileCopyrightText: 2025 Liz Clark for Adafruit Industries
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
import time
|
||||
import board
|
||||
import displayio
|
||||
|
|
@ -47,8 +47,7 @@ HEIGHT = 64
|
|||
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=WIDTH, height=HEIGHT)
|
||||
|
||||
font = bitmap_font.load_font('/Arial-14.bdf')
|
||||
main_area = label.Label(
|
||||
font, text="6 Minutes", color=0xFFFFFF)
|
||||
main_area = label.Label(font, text="6 Minutes", color=0xFFFFFF)
|
||||
main_area.anchor_point = (0.5, 0.0)
|
||||
main_area.anchored_position = (display.width / 2, display.height/2)
|
||||
splash = displayio.Group()
|
||||
|
|
|
|||
Loading…
Reference in a new issue