Kushal Subedi
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
docs_src/body_multiple_params/tutorial001.py
|
@ -22,7 +22,7 @@ async def update_item( |
|
|
): |
|
|
): |
|
|
results = {"item_id": item_id} |
|
|
results = {"item_id": item_id} |
|
|
if q: |
|
|
if q: |
|
|
results.["q"]= q |
|
|
results["q"]= q |
|
|
if item: |
|
|
if item: |
|
|
results["item"]=item |
|
|
results["item"]=item |
|
|
return results |
|
|
return results |
|
|