pre-commit-ci-lite[bot]
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
3 deletions
-
docs_src/body/tutorial005_py39.py
|
|
|
@ -1,5 +1,3 @@ |
|
|
|
from typing import Optional |
|
|
|
|
|
|
|
from fastapi import FastAPI |
|
|
|
from pydantic import BaseModel |
|
|
|
|
|
|
|
@ -7,7 +5,7 @@ app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
class Item(BaseModel): |
|
|
|
description: Optional[str] |
|
|
|
description: str | None |
|
|
|
|
|
|
|
|
|
|
|
@app.post("/items/") |
|
|
|
|