XinXiKuaiBaoYuan/django-backend/venv/lib/python3.9/site-packages/redis/compat.py

7 lines
242 B
Python
Raw Permalink Normal View History

# flake8: noqa
try:
from typing import Literal, Protocol, TypedDict # lgtm [py/unused-import]
except ImportError:
from typing_extensions import Literal # lgtm [py/unused-import]
from typing_extensions import Protocol, TypedDict