Skip to content

Commit 681d4e3

Browse files
committed
Minor fixes to appease pylint
1 parent b8f34db commit 681d4e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

adafruit_display_text/scrolling_label.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Display_Text.git"
2828

2929
try:
30-
from typing import Union, Optional, Tuple
30+
from typing import Union, Optional
3131
from fontio import BuiltinFont
3232
from adafruit_bitmap_font.bdf import BDF
3333
from adafruit_bitmap_font.pcf import PCF
@@ -80,7 +80,8 @@ def update(self, force: Optional[bool] = False) -> None:
8080
previews animation frame then move the characters over by 1 index.
8181
Must be called in the main loop of user code.
8282
83-
:param bool force: whether to ignore ``animation_time`` and force the update. Default is False.
83+
:param bool force: whether to ignore ``animation_time`` and force the update.
84+
Default is False.
8485
:return: None
8586
"""
8687
_now = time.monotonic()

0 commit comments

Comments
 (0)