Skip to content

Commit 3a702af

Browse files
committed
Add missing return type for _scroll_marquee()
1 parent fb23221 commit 3a702af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ht16k33/segments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def marquee(self, text: str, delay: float = 0.25, loop: bool = True) -> None:
365365
else:
366366
self._scroll_marquee(text, delay)
367367

368-
def _scroll_marquee(self, text: str, delay: float):
368+
def _scroll_marquee(self, text: str, delay: float) -> None:
369369
"""Scroll through the text string once using the delay"""
370370
char_is_dot = False
371371
for character in text:

0 commit comments

Comments
 (0)