| Brad Bishop | cab2bdd | 2017-01-21 15:00:54 -0500 | [diff] [blame] | 1 | % for i, s in enumerate(signature.sig.items()): |
| 2 | % if i == 0: | ||||
| 3 | ${'"{0}=\'{1}\',"'.format(*s)} | ||||
| 4 | % elif i + 1 == len(signature.sig): | ||||
| 5 | ${indent(1)}${'"{0}=\'{1}\'"'.format(*s)}\ | ||||
| 6 | % else: | ||||
| 7 | ${indent(1)}${'"{0}=\'{1}\',"'.format(*s)} | ||||
| 8 | % endif | ||||
| 9 | % endfor | ||||