📝 Add note about Python 3.10 `X | Y` operator in explanation about Response Models (#5307)

This commit is contained in:
MendyLanda 2022-09-04 09:29:06 -04:00 committed by GitHub
parent 198b7ef2cb
commit ae369d879a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ Your response model could have default values, like:
{!> ../../../docs_src/response_model/tutorial004_py310.py!}
```
* `description: Union[str, None] = None` has a default of `None`.
* `description: Union[str, None] = None` (or `str | None = None` in Python 3.10) has a default of `None`.
* `tax: float = 10.5` has a default of `10.5`.
* `tags: List[str] = []` as a default of an empty list: `[]`.