15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
{% for p, info in api.all_parts.items() %}
|
|
{% if info.required %}{{ p }}, {% endif %}
|
|
{% endfor %}
|
|
|
|
{% if api.body %}
|
|
body{% if not api.body.required %}=None{% endif %},
|
|
{% endif %}
|
|
|
|
{% for p, info in api.all_parts.items() %}
|
|
{% if not info.required %}{{ p }}=None, {% endif %}
|
|
{% endfor %}
|
|
|
|
params=None,
|
|
headers=None
|