WebHost: fix some PEP8

This commit is contained in:
Fabian Dill
2021-11-25 20:48:58 +01:00
parent 744b12345a
commit bd0b7ea80a
6 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
{% macro list_rooms(rooms) -%}
<ul>
{% for room in rooms %}
<li><a href="{{ url_for("hostRoom", room=room.id) }}">Room #{{ room.id|suuid }}</a></li>
<li><a href="{{ url_for("host_room", room=room.id) }}">Room #{{ room.id|suuid }}</a></li>
{% endfor %}
{{ caller() }}
</ul>