Skip to content

Commit 54799a3

Browse files
linter fixes
1 parent 0e17cae commit 54799a3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app/services/e_sign/eg031_bulk_sending_envelopes_service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def worker
5757

5858
# Attach your bulk list ID to the envelope
5959
#ds-snippet-start:eSign31Step5
60-
results, _status, headers = envelope_api.create_custom_fields_with_http_info(args[:account_id], envelope_id, custom_fields(bulk_list_id))
60+
_results, _status, headers = envelope_api.create_custom_fields_with_http_info(args[:account_id], envelope_id, custom_fields(bulk_list_id))
6161

6262
remaining = headers['X-RateLimit-Remaining']
6363
reset = headers['X-RateLimit-Reset']

app/services/e_sign/eg042_document_generation_service.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def worker
3333

3434
#ds-snippet-start:eSign42Step3
3535
document_id = '1'
36-
results, _status, headers = template_api.update_document_with_http_info(account_id, document_id, template_id, template_document(envelope_args))
36+
_results, _status, headers = template_api.update_document_with_http_info(account_id, document_id, template_id, template_document(envelope_args))
3737

3838
remaining = headers['X-RateLimit-Remaining']
3939
reset = headers['X-RateLimit-Reset']
@@ -47,7 +47,7 @@ def worker
4747

4848
#ds-snippet-start:eSign42Step4
4949
recipient_id = '1'
50-
results, _status, headers = template_api.create_tabs_with_http_info(account_id, recipient_id, template_id, recipient_tabs)
50+
_results, _status, headers = template_api.create_tabs_with_http_info(account_id, recipient_id, template_id, recipient_tabs)
5151

5252
remaining = headers['X-RateLimit-Remaining']
5353
reset = headers['X-RateLimit-Reset']
@@ -92,7 +92,7 @@ def worker
9292

9393
#ds-snippet-start:eSign42Step7
9494
form_fields_request = form_fields(envelope_args, document_id_guid)
95-
results, _status, headers = envelope_api.update_envelope_doc_gen_form_fields_with_http_info(
95+
_results, _status, headers = envelope_api.update_envelope_doc_gen_form_fields_with_http_info(
9696
account_id,
9797
envelope_id,
9898
form_fields_request

app/services/e_sign/eg043_shared_access_service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def create_authorization
8989
return if authorizations.result_set_size.to_i.positive?
9090

9191
# Create authorization
92-
results, _status, headers = accounts_api.create_user_authorization_with_http_info(
92+
_results, _status, headers = accounts_api.create_user_authorization_with_http_info(
9393
args[:account_id],
9494
args[:user_id],
9595
user_authorization_request(args)

0 commit comments

Comments
 (0)