Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

style: format code with Black and isort #243

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion fastapi_restful/cbv.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down