Skip to content

Commit 2bb7f4b

Browse files
committed
Fixed line too long
1 parent 68e65a5 commit 2bb7f4b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CircuitPython_Pyloton/pyloton.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,8 @@ def update_display(self): #pylint: disable=too-many-branches
521521

522522
if self.cadence_enabled:
523523
if not self._setup:
524-
self._cadence_label = self._label_maker('{} rpm'.format(cadence), 50, self._cadence_y)
524+
self._cadence_label = self._label_maker('{} rpm'.format(cadence), 50,
525+
self._cadence_y)
525526
self.splash.append(self._cadence_label)
526527
else:
527528
self._cadence_label.text = '{} rpm'.format(cadence)

0 commit comments

Comments
 (0)