Skip to content

Commit d9068fa

Browse files
authored
Merge pull request #76 from FoamyGuy/pixelmatrix_fix
Pixelmatrix fix
2 parents 8e9303d + 6d4f304 commit d9068fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_featherwing/pixelmatrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing.git"
1717

1818
# pylint: disable-msg=unsubscriptable-object, unsupported-assignment-operation
19-
from typing import Sequence
19+
2020
from adafruit_featherwing.auto_writeable import AutoWriteable
2121

2222
try:
23-
from typing import Union, Tuple, List
23+
from typing import Union, Tuple, List, Sequence
2424

2525
IndexUnion = Union[Tuple[int, int], slice, int]
2626
RGBSequence = Union[List[int], Tuple[int, int, int]]

0 commit comments

Comments
 (0)