Skip to content

Commit

Permalink
use kwargs instead
Browse files Browse the repository at this point in the history
  • Loading branch information
mwwoda committed Jul 10, 2024
1 parent 9fb2ff7 commit bddea83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/usage/sign_requests.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ signer = {
signers = [signer]
parent_folder_id = '123456789'

new_sign_request = client.create_sign_request_v2(signers, files, parent_folder_id)
new_sign_request = client.create_sign_request_v2(signers, files=files, parent_folder_id=parent_folder_id)
print(f'(Sign Request ID: {new_sign_request.id})')
```

Expand Down

0 comments on commit bddea83

Please sign in to comment.