Update tutorial006_an_py39.py

The size parameter was not appended to results
This commit is contained in:
Muhammad Ashiq Ameer 2024-04-23 12:01:30 +05:30 committed by GitHub
parent b0a0d6abfd
commit 83684dfb15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -15,4 +15,6 @@ async def read_items(
results = {"item_id": item_id}
if q:
results.update({"q": q})
if size:
results.update({"size": size})
return results