Browse Source

[fix] Add noqa to all imports in the response module

pull/13589/head
Tyler Epperson 4 months ago
parent
commit
5c8b891680
  1. 13
      fastapi/responses.py

13
fastapi/responses.py

@ -1,8 +1,15 @@
from typing import Any from typing import Any
from starlette.responses import ( from starlette.responses import ( # noqa: F401
JSONResponse, FileResponse, # noqa: F401
) # noqa HTMLResponse, # noqa: F401
JSONResponse, # noqa: F401
PlainTextResponse, # noqa: F401
RedirectResponse, # noqa: F401
Response, # noqa: F401
StreamingResponse, # noqa: F401
)
try: try:
import ujson import ujson

Loading…
Cancel
Save