Skip to content

Commit

Permalink
pep8: Add compliance with rule E261 hellosign/view.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
adnrs96 authored and timabbott committed Jun 4, 2017
1 parent 90cdebb commit e28cafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zerver/webhooks/hellosign/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def append_separator(i):
elif i + 3 != len(signatories):
result.append(',')

result = ["The {}".format(model_payload['contract_title'])] # type: Any
result = ["The {}".format(model_payload['contract_title'])] # type: Any
for i, signatory in enumerate(signatories):
name = model_payload['name_{}'.format(i)]
if signatory['status_code'] == 'awaiting_signature':
Expand Down

0 comments on commit e28cafe

Please sign in to comment.