Skip to content

Commit f15a715

Browse files
committed
Add missing def sort
1 parent b7e13d6 commit f15a715

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

circuitpython_typing/led.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* Author(s): Alec Delaney
1212
"""
1313

14-
# Protocol was introduced in Python 3.8, TypeAlias in 3.10
1514
from typing import Tuple, Union
1615

16+
# Protocol was introduced in Python 3.8, TypeAlias in 3.10
1717
from typing_extensions import Protocol, TypeAlias
1818

1919
ColorBasedColorUnion: TypeAlias = Union[int, Tuple[int, int, int]]

0 commit comments

Comments
 (0)