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
parent
commit
8ab6cfb6c2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs_src/body/tutorial002.py

2
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})

Loading…
Cancel
Save