14 lines
310 B
Plaintext
14 lines
310 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
|