Skip to content

Commit

Permalink
Merge pull request #76 from FoamyGuy/pixelmatrix_fix
Browse files Browse the repository at this point in the history
Pixelmatrix fix
  • Loading branch information
gamblor21 committed Dec 24, 2021
2 parents 8e9303d + 6d4f304 commit d9068fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adafruit_featherwing/pixelmatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit d9068fa

Please sign in to comment.