Browse Source

📝 Simplify example for docs for Additional Responses, remove unnecessary `else` (#4693)

pull/5075/merge
Adrian Garcia Badaracco 3 years ago
committed by GitHub
parent
commit
dde140d8e3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/en/docs/advanced/additional-responses.md
  2. 3
      docs_src/additional_responses/tutorial001.py

2
docs/en/docs/advanced/additional-responses.md

@ -23,7 +23,7 @@ Each of those response `dict`s can have a key `model`, containing a Pydantic mod
For example, to declare another response with a status code `404` and a Pydantic model `Message`, you can write:
```Python hl_lines="18 23"
```Python hl_lines="18 22"
{!../../../docs_src/additional_responses/tutorial001.py!}
```

3
docs_src/additional_responses/tutorial001.py

@ -19,5 +19,4 @@ app = FastAPI()
async def read_item(item_id: str):
if item_id == "foo":
return {"id": "foo", "value": "there goes my hero"}
else:
return JSONResponse(status_code=404, content={"message": "Item not found"})
return JSONResponse(status_code=404, content={"message": "Item not found"})

Loading…
Cancel
Save