From 392170d116f1c4deb3fd868ef0c02e1582e19cff Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 6 Apr 2025 22:12:19 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/responses.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/fastapi/responses.py b/fastapi/responses.py index 011c54427..af98cf4e3 100644 --- a/fastapi/responses.py +++ b/fastapi/responses.py @@ -1,16 +1,15 @@ from typing import Any from starlette.responses import ( # noqa: F401 - FileResponse, # noqa: F401 - HTMLResponse, # noqa: F401 - JSONResponse, # noqa: F401 - PlainTextResponse, # noqa: F401 - RedirectResponse, # noqa: F401 - Response, # noqa: F401 - StreamingResponse, # noqa: F401 + FileResponse, # noqa: F401 + HTMLResponse, # noqa: F401 + JSONResponse, # noqa: F401 + PlainTextResponse, # noqa: F401 + RedirectResponse, # noqa: F401 + Response, # noqa: F401 + StreamingResponse, # noqa: F401 ) - try: import ujson except ImportError: # pragma: nocover