You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if typing.TYPE_CHECKING:
from typing import TypedDict # if the smallest python version we support has it! Otherwise, you could wrap this all in a try/except and if there's an error define `_EndpointDict = dict` and that's it.
class _EndpointDict(TypedDict):
path:str
port:int # ?
Originally posted by @PietroPasotti in #95 (comment)
The text was updated successfully, but these errors were encountered: