From 9b2d6a332f73f18b6eca567ef0640680df8b863d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 13:57:39 +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/types.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/fastapi/types.py b/fastapi/types.py index 127a3c52b..890eb430e 100644 --- a/fastapi/types.py +++ b/fastapi/types.py @@ -1,6 +1,17 @@ import types from enum import Enum -from typing import Any, Callable, Dict, Generic, Optional, Set, Tuple, Type, TypeVar, Union +from typing import ( + Any, + Callable, + Dict, + Generic, + Optional, + Set, + Tuple, + Type, + TypeVar, + Union, +) from pydantic import BaseModel