summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--api/views.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/api/views.py b/api/views.py
index cd2965c..8d2da83 100644
--- a/api/views.py
+++ b/api/views.py
@@ -196,7 +196,6 @@ class AnswerValidator(APIView):
user_answer = float(request.data['answer'][0])
elif question.type == 'string':
user_answer = request.data['answer']
- print(user_answer)
else:
user_answer = request.data['answer']
except KeyError: