🐛 fix(service.py): remove redundant assignment to params variable
The redundant assignment to the params variable was removed to prevent overwriting the initial assignment.
This commit is contained in:
parent
4c6dc748a0
commit
51929df2b0
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ class StoreService(Service):
|
|||
limit: int = 10,
|
||||
fields: Optional[List[str]] = None,
|
||||
) -> List[ComponentResponse]:
|
||||
# params = {"page": page, "limit": limit}
|
||||
params = {"page": page, "limit": limit}
|
||||
params = {}
|
||||
# ?aggregate[count]=likes
|
||||
params["fields"] = (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue