Skip to content

Commit

Permalink
Fix user settings get query
Browse files Browse the repository at this point in the history
  • Loading branch information
munrojm committed Feb 14, 2024
1 parent f4c4d9a commit 887904b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mp_api/client/routes/_user_settings.py
Expand Up @@ -89,7 +89,6 @@ def get_user_settings(self, consumer_id, fields): # pragma: no cover
Raises:
MPRestError.
"""
return super()._search(
consumer_id=consumer_id,
fields=fields,
)
return self._query_resource(
suburl=f"{consumer_id}", fields=fields, num_chunks=1, chunk_size=1
).get("data")

0 comments on commit 887904b

Please sign in to comment.