Don't page lists, they don't support paging

This commit is contained in:
Ivan Habunek 2023-12-08 08:44:24 +01:00
parent 9098279d40
commit 0f4f0b3863
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 1 additions and 2 deletions

View File

@ -589,8 +589,7 @@ def get_instance(base_url: str) -> Response:
def get_lists(app, user):
path = "/api/v1/lists"
return _get_response_list(app, user, path)
return http.get(app, user, "/api/v1/lists").json()
def find_list_id(app, user, title):