mirror of https://github.com/tiangolo/fastapi.git
🎨 Auto format
This commit is contained in:
parent
07ceed403d
commit
c791ed5479
|
|
@ -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}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue