Skip to content

Commit

Permalink
fix(api): get_list: remove limit (#1191)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiyad authored May 18, 2023
1 parent d453289 commit 39913ce
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions helpdesk/extends/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import frappe
from frappe.model.base_document import get_controller
from frappe.query_builder import Query
from frappe.query_builder.functions import Count

from .doc import apply_sort
Expand All @@ -20,7 +19,7 @@ def get_list(
filters=None,
order_by=None,
start=0,
limit=20,
limit=None,
group_by=None,
parent=None,
debug=False,
Expand Down

0 comments on commit 39913ce

Please sign in to comment.