Update tutorial006_an.py

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

View File

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