fix(macros): fix format_kwargs macro

This commit is contained in:
sticky-note 2020-04-29 13:59:53 +11:00
parent 702323c24d
commit 5e6511b783

View file

@ -4,7 +4,7 @@
{%- filter indent(4) %}
{%- for k, v in kwarg|dictsort() %}
- {{ k }}: {{ v }}
- {{ k }}: {{ v|yaml_dquote if v is string else v }}
{%- endfor %}
{%- endfilter %}