From b6b3ad520d9090734c714535258ada5ad53e872d Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 09:33:32 +0000 Subject: [PATCH] style: format code with Black and isort This commit fixes the style issues introduced in e957135 according to the output from Black and isort. Details: None --- fastapi_restful/cbv.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/fastapi_restful/cbv.py b/fastapi_restful/cbv.py index 5353c96c..fe398a24 100644 --- a/fastapi_restful/cbv.py +++ b/fastapi_restful/cbv.py @@ -1,5 +1,15 @@ import inspect -from typing import Any, Callable, List, Tuple, Type, TypeVar, Union, cast, get_type_hints +from typing import ( + Any, + Callable, + List, + Tuple, + Type, + TypeVar, + Union, + cast, + get_type_hints, +) import pydantic from fastapi import APIRouter, Depends