Ysabel
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
docs_src/body/tutorial002.py
-
docs_src/body/tutorial002_py310.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 |
|
|
|
|
|
@ -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 |
|
|
|