diff --git a/adafruit_featherwing/pixelmatrix.py b/adafruit_featherwing/pixelmatrix.py index f38ff69..f5f07af 100755 --- a/adafruit_featherwing/pixelmatrix.py +++ b/adafruit_featherwing/pixelmatrix.py @@ -16,11 +16,11 @@ __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing.git" # pylint: disable-msg=unsubscriptable-object, unsupported-assignment-operation -from typing import Sequence + from adafruit_featherwing.auto_writeable import AutoWriteable try: - from typing import Union, Tuple, List + from typing import Union, Tuple, List, Sequence IndexUnion = Union[Tuple[int, int], slice, int] RGBSequence = Union[List[int], Tuple[int, int, int]]