Skip to content

Commit 72a300f

Browse files
committed
Removed TypeVar use for SSLContextType assignment
1 parent 080fecd commit 72a300f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_requests.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
cpython_socket.socket,
6060
)
6161
SocketpoolModuleType = types.ModuleType
62-
SSLContextType = TypeVar(
63-
"SSLContextType", ssl.SSLContext
62+
SSLContextType = (
63+
ssl.SSLContext
6464
) # Can use either CircuitPython or CPython ssl module
6565
InterfaceType = TypeVar("InterfaceType", ESP_SPIcontrol, WIZNET5K, FONA)
6666

0 commit comments

Comments
 (0)