Skip to content

Commit

Permalink
[entities] fix typo : AttributeError: module 'zou.app.utils.query' ha…
Browse files Browse the repository at this point in the history
…s no attribute 'get_paginated_result'
  • Loading branch information
EvanBldy committed Oct 4, 2023
1 parent 54812d5 commit 01612eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zou/app/services/entities_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def get_entity_links_for_project(project_id, page=None, limit=None):
if page is not None and page > 0:
if limit < 1:
limit = None
results = query_utils.get_paginated_result(query, page, limit=limit)
results = query_utils.get_paginated_results(query, page, limit=limit)
else:
for entity_link in query.all():
results.append(
Expand Down

0 comments on commit 01612eb

Please sign in to comment.