Skip to content

Commit 743040b

Browse files
authored
Update download_attachment.py
1 parent 96a101e commit 743040b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/attachments/download_attachment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def download_attachment(module_api_name, record_id, attachment_id, destination_f
3131
destination_folder = "/users";
3232
"""
3333
attachments_operations = AttachmentsOperations()
34-
response = attachments_operations.get_attachment(attachment_id, record_id, module_api_name, )
34+
response = attachments_operations.get_attachment(attachment_id, record_id, module_api_name)
3535
if response is not None:
3636
print('Status Code: ' + str(response.get_status_code()))
3737
if response.get_status_code() in [204, 304]:

0 commit comments

Comments
 (0)