We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08ab09 commit ecc0e03Copy full SHA for ecc0e03
adafruit_display_text/scrolling_label.py
@@ -84,7 +84,7 @@ def update(self, force: bool = False) -> None:
84
_now = ticks_ms()
85
if _now < self._last_animate_time: # ticks_ms has rolled over
86
self._last_animate_time = _now
87
- if force or self._last_animate_time + (self.animate_time*1000) <= _now:
+ if force or self._last_animate_time + (self.animate_time * 1000) <= _now:
88
if len(self.full_text) <= self.max_characters:
89
super()._set_text(self.full_text, self.scale)
90
0 commit comments