Browse Source
Updated tutorial002.py
dict() is now deprecated. We need to replace it with model_dump()
pull/13528/head
Harsh N. Haria
3 weeks 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_src/body/tutorial002.py
|
|
@ -16,7 +16,7 @@ app = FastAPI() |
|
|
|
|
|
|
|
@app.post("/items/") |
|
|
|
async def create_item(item: Item): |
|
|
|
item_dict = item.dict() |
|
|
|
item_dict = item.model_dump() |
|
|
|
if item.tax is not None: |
|
|
|
price_with_tax = item.price + item.tax |
|
|
|
item_dict.update({"price_with_tax": price_with_tax}) |
|
|
|