Skip to content

Commit a1bd056

Browse files
committed
Fix auto_write typing
1 parent b3b04cc commit a1bd056

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
@@ -158,7 +158,7 @@ def __init__(
158158
self,
159159
i2c: I2C,
160160
address: Union[int, List[int], Tuple[int, ...]] = 0x70,
161-
auto_write: Union[int, List[int], Tuple[int, ...]] = True,
161+
auto_write: bool = True,
162162
chars_per_display: int = 4,
163163
) -> None:
164164
super().__init__(i2c, address, auto_write)

0 commit comments

Comments
 (0)