Skip to content

Commit 29ce3af

Browse files
committed
fixed typing boolean->bool
1 parent 2567867 commit 29ce3af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_display_shapes/sparkline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def clear_values(self) -> None:
9999
self.pop()
100100
self._spark_list = [] # empty the list
101101

102-
def add_value(self, value: float, update: boolean = True) -> None:
102+
def add_value(self, value: float, update: bool = True) -> None:
103103
"""Add a value to the sparkline.
104104
:param value: The value to be added to the sparkline
105105
:param update: trigger recreation of primitives

0 commit comments

Comments
 (0)