blob: 738687f645b07748f4b87a8ffd29f7f3c49ee4fe (
plain)
1
2
3
4
5
6
7
8
9
|
# 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,
)
|