Browse Source

📝 Update Request Body's `tutorial002` to deal with `tax=0` case (#13230)

Co-authored-by: svlandeg <[email protected]>
pull/13285/head
Ysabel 2 months ago
committed by GitHub
parent
commit
9667ce87a9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs_src/body/tutorial002.py
  2. 2
      docs_src/body/tutorial002_py310.py

2
docs_src/body/tutorial002.py

@ -17,7 +17,7 @@ app = FastAPI()
@app.post("/items/")
async def create_item(item: Item):
item_dict = item.dict()
if item.tax:
if item.tax is not None:
price_with_tax = item.price + item.tax
item_dict.update({"price_with_tax": price_with_tax})
return item_dict

2
docs_src/body/tutorial002_py310.py

@ -15,7 +15,7 @@ app = FastAPI()
@app.post("/items/")
async def create_item(item: Item):
item_dict = item.dict()
if item.tax:
if item.tax is not None:
price_with_tax = item.price + item.tax
item_dict.update({"price_with_tax": price_with_tax})
return item_dict

Loading…
Cancel
Save