Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
PATCH: Fix function call
Browse files Browse the repository at this point in the history
  • Loading branch information
jonodrew committed May 1, 2024
1 parent c588769 commit c2405a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda_/zendesk_backup/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def save_support(ticket_ids: Optional[list] = None):
:param ticket_ids:
:return:
"""
s3_bucket = get_s3_bucket
s3_bucket = get_s3_bucket()
if ticket_ids:
tickets = [zenpy_client().tickets(id=str(ticket_id)) for ticket_id in ticket_ids]
else:
Expand Down

0 comments on commit c2405a2

Please sign in to comment.