diff options
Diffstat (limited to 'pysite/tables.py')
-rw-r--r-- | pysite/tables.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pysite/tables.py b/pysite/tables.py index ad864fee..cf38a698 100644 --- a/pysite/tables.py +++ b/pysite/tables.py @@ -49,10 +49,10 @@ TABLES = { "state", # str "task_html", # str "task_rst", # str - "teams", # list[int] + "teams", # list[str] "theme", # str "title", # str - "winners" # list[int] + "winners" # list[str] ]) ), @@ -93,7 +93,7 @@ TABLES = { keys=sorted([ "id", # uuid "name", # str - "members" # list[int] + "members" # list[str] ]) ), |