Browse Source

'fix' mypy issue

pull/13920/head
lokidev 1 year ago
committed by Albin Skott
parent
commit
198c4acce9
Failed to extract signature
  1. 4
      fastapi/dependencies/utils.py

4
fastapi/dependencies/utils.py

@ -74,9 +74,9 @@ from starlette.websockets import WebSocket
from typing_extensions import Annotated, get_args, get_origin
try:
from typing import TypeAliasType
from typing_extensions import TypeAliasType
except ImportError:
TypeAliasType = None
TypeAliasType = None # type: ignore[misc,assignment]
multipart_not_installed_error = (

Loading…
Cancel
Save