Browse Source

Pro bezpečnost Iterable -> Sequence

pull/30/head
Jonas Havelka 1 year ago
parent
commit
baaaa0829a
  1. 4
      seminar/views/views_all.py

4
seminar/views/views_all.py

@ -35,7 +35,7 @@ from django.conf import settings
import unicodedata
import logging
import time
from collections.abc import Iterable
from collections.abc import Sequence
from seminar.utils import aktivniResitele
@ -678,7 +678,7 @@ def StavDatabazeView(request):
# Interní, nemá se nikdy objevit v urls (jinak to účastníci vytrolí)
def formularOKView(request, text='', dalsi_odkazy: Iterable[tuple[str, str]] = ()):
def formularOKView(request, text='', dalsi_odkazy: Sequence[tuple[str, str]] = ()):
template_name = 'seminar/formular_ok.html'
odkazy = list(dalsi_odkazy) + [
# (Text, odkaz)

Loading…
Cancel
Save