Use list instead of tuple to avoid errors with missing comma.

This commit is contained in:
Emil Stenström 2019-11-23 19:26:16 +01:00
parent 8abf8c5e3b
commit ebb180c540
4 changed files with 5 additions and 5 deletions

View file

@ -26,7 +26,7 @@ class Component(object):
class Media:
template = None
css = {}
js = ()
js = []
# This variable represents the global component registry
registry = ComponentRegistry()