Skip to content

Commit db3e026

Browse files
authored
fix: template syntax error (#1491)
1 parent 3003e32 commit db3e026

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/ydata_profiling/report/presentation/flavours/html/templates

src/ydata_profiling/report/presentation/flavours/html/templates/table.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<tr{% if 'alert' in row and row['alert'] %} class="alert"{% endif %}>
1919
<th>{{ row['name'] }}</th>
2020
{% if row['value'].__class__.__name__ == 'list' %}
21-
{% for value in row['value'] +%}
21+
{% for value in row['value'] %}
2222
<td style="white-space:pre white-space:nowrap">{{ value }}{% if loop.last and 'hint' in row %} {{ row['hint'] }}{% endif %}</td>
2323
{% endfor %}
2424
{% else %}

0 commit comments

Comments
 (0)