Skip to content

Commit 7b31522

Browse files
committed
Remove unused imports
1 parent 40ce66e commit 7b31522

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

circuitpython_typing/pwmio.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313

1414
# # Protocol was introduced in Python 3.8.
1515
try:
16-
from typing import Union, Tuple, Protocol
16+
from typing import Protocol
1717
except ImportError:
1818
from typing_extensions import Protocol
1919

20+
2021
class PWMOut(Protocol):
2122
"""Protocol that implements, at the bare minimum, the `duty_cycle` property"""
2223

0 commit comments

Comments
 (0)