Files
opensearch-pyd/utils/templates/func_params
T

15 lines
324 B
Plaintext
Raw Normal View History

{% for p, info in api.all_parts.items() %}
{% if info.required %}{{ p }}, {% endif %}
{% endfor %}
2019-12-22 15:35:00 +01:00
{% 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 %}
2020-03-11 16:33:15 -05:00
params=None,
headers=None