🎨 Auto format

This commit is contained in:
pre-commit-ci-lite[bot] 2026-01-28 12:52:01 +00:00 committed by GitHub
parent 07ceed403d
commit c791ed5479
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -155,7 +155,9 @@ def test_required_dict_union(path: str):
@app.get("/required-dict-of-union")
async def read_required_dict_of_union(p: Annotated[dict[str, Union[int, bool]], Query()]):
async def read_required_dict_of_union(
p: Annotated[dict[str, Union[int, bool]], Query()],
):
return {"p": p}