Alberto Zambrano Zarallo
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
docs/en/docs/tutorial/body.md
|
|
|
@ -76,7 +76,7 @@ In this example: |
|
|
|
|
|
|
|
```python |
|
|
|
class Item(BaseModel): |
|
|
|
description: Optional[str] = None |
|
|
|
description: str | None = None |
|
|
|
``` |
|
|
|
|
|
|
|
Here, `description` can be omitted entirely in the request body. |
|
|
|
|