'fix' mypy issue

This commit is contained in:
lokidev 2024-02-13 21:45:26 +01:00 committed by Albin Skott
parent 1dbb6048ca
commit 198c4acce9
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -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 = (