mirror of https://github.com/tiangolo/fastapi.git
🔥 Remove dangling extra condiitonal no longer needed (#14435)
This commit is contained in:
parent
f636513390
commit
a79ae3d66f
|
|
@ -3,7 +3,6 @@ import email.message
|
||||||
import functools
|
import functools
|
||||||
import inspect
|
import inspect
|
||||||
import json
|
import json
|
||||||
import sys
|
|
||||||
from contextlib import AsyncExitStack, asynccontextmanager
|
from contextlib import AsyncExitStack, asynccontextmanager
|
||||||
from enum import Enum, IntEnum
|
from enum import Enum, IntEnum
|
||||||
from typing import (
|
from typing import (
|
||||||
|
|
@ -79,11 +78,6 @@ from starlette.types import AppType, ASGIApp, Lifespan, Receive, Scope, Send
|
||||||
from starlette.websockets import WebSocket
|
from starlette.websockets import WebSocket
|
||||||
from typing_extensions import Annotated, deprecated
|
from typing_extensions import Annotated, deprecated
|
||||||
|
|
||||||
if sys.version_info >= (3, 13): # pragma: no cover
|
|
||||||
pass
|
|
||||||
else: # pragma: no cover
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
# Copy of starlette.routing.request_response modified to include the
|
# Copy of starlette.routing.request_response modified to include the
|
||||||
# dependencies' AsyncExitStack
|
# dependencies' AsyncExitStack
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue