From c0af4dd0dcafe20113d40a54ed4ae8296cecde97 Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 15 Aug 2024 09:22:33 -0400 Subject: [PATCH] fix bug in passing question_type as both positional and keyword arg in QuestionBase init. --- ddm/models/questions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ddm/models/questions.py b/ddm/models/questions.py index 77273472..0b95f47c 100644 --- a/ddm/models/questions.py +++ b/ddm/models/questions.py @@ -77,7 +77,6 @@ class Meta: ] def __init__(self, *args, **kwargs): - kwargs['question_type'] = self.DEFAULT_QUESTION_TYPE super().__init__(*args, **kwargs) def __str__(self):