10 lines
242 B
Python
10 lines
242 B
Python
# flake8: noqa
|
|
try:
|
|
from typing import Literal, Protocol, TypedDict # lgtm [py/unused-import]
|
|
except ImportError:
|
|
from typing_extensions import ( # lgtm [py/unused-import]
|
|
Literal,
|
|
Protocol,
|
|
TypedDict,
|
|
)
|