diff --git a/src/forms.py b/src/forms.py index 6bf90ce..9f03476 100644 --- a/src/forms.py +++ b/src/forms.py @@ -200,8 +200,8 @@ def populate_obj(self, entity, name): class Question(Form): """A question form.""" - def __init__(self): - super(Question, self).__init__() + def __init__(self, **kwargs): + super(Question, self).__init__( **kwargs) self.week.default = WeekField.week_default() self.season.choices = SeasonField.season_choices()