Skip to content

Commit 72cb5f2

Browse files
committed
Fix typing using List
1 parent 3a702af commit 72cb5f2

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
@@ -320,7 +320,7 @@ def _char_buffer_index(self, char_pos: int) -> int:
320320
return offset + (char_pos % self._chars_per_buffer()) * self._bytes_per_char
321321

322322
def set_digit_raw(
323-
self, index: int, bitmask: Union[int, List[int, int], Tuple[int, int]]
323+
self, index: int, bitmask: Union[int, List[int], Tuple[int, int]]
324324
) -> None:
325325
"""Set digit at position to raw bitmask value. Position should be a value
326326
of 0 to 3 with 0 being the left most character on the display.

0 commit comments

Comments
 (0)