Skip to content

Instantly share code, notes, and snippets.

@rms1000watt
Created October 18, 2019 21:10
Show Gist options
  • Save rms1000watt/358bbe8814f9606074ba1422a2f62816 to your computer and use it in GitHub Desktop.
Save rms1000watt/358bbe8814f9606074ba1422a2f62816 to your computer and use it in GitHub Desktop.
Jinja2 omit comma from last item in list
# Courtesy of: https://stackoverflow.com/a/11974399
{%- for item in items %}
[
"{{item}}"{{ "," if not loop.last }}
]
{%- endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment