Skip to content

Commit

Permalink
fix: whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiyad committed Nov 24, 2023
1 parent 550c2af commit 54eec8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpdesk/helpdesk/doctype/hd_ticket/hd_ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ def permission_query(user):
user=frappe.db.escape(user)
)
for c in customer:
res += 'OR `tabHD Ticket`.customer="{customer}"'.format(
res += ' OR `tabHD Ticket`.customer="{customer}"'.format(

Check warning on line 709 in helpdesk/helpdesk/doctype/hd_ticket/hd_ticket.py

View check run for this annotation

Codecov / codecov/patch

helpdesk/helpdesk/doctype/hd_ticket/hd_ticket.py#L708-L709

Added lines #L708 - L709 were not covered by tests
customer=frappe.db.escape(c)
)
return res

Check warning on line 712 in helpdesk/helpdesk/doctype/hd_ticket/hd_ticket.py

View check run for this annotation

Codecov / codecov/patch

helpdesk/helpdesk/doctype/hd_ticket/hd_ticket.py#L712

Added line #L712 was not covered by tests

0 comments on commit 54eec8f

Please sign in to comment.