We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f751f5 commit 28d4418Copy full SHA for 28d4418
1 file changed
taskbadger/sdk.py
@@ -162,7 +162,9 @@ def list_tasks(page_size: int = None, cursor: str = None):
162
"""List tasks."""
163
kwargs = _make_args(page_size=page_size, cursor=cursor)
164
with Session() as client:
165
- return task_list.sync(client=client, **kwargs)
+ response = task_list.sync_detailed(client=client, **kwargs)
166
+ _check_response(response)
167
+ return response.parsed
168
169
170
def _make_args(**kwargs):
0 commit comments