summaryrefslogtreecommitdiff
path: root/yaksh/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/models.py')
-rw-r--r--yaksh/models.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index 16800fe..11ddf8a 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -2037,8 +2037,11 @@ class AnswerPaperManager(models.Manager):
def _get_per_tc_data(answers, q_type):
tc = []
for answer in answers["answer"]:
- ans = literal_eval(answer) if answer else None
- tc.extend(ans) if q_type == "mcc" else tc.append(str(ans))
+ try:
+ ans = literal_eval(answer) if answer else None
+ tc.extend(ans) if q_type == "mcc" else tc.append(str(ans))
+ except Exception:
+ pass
return dict(Counter(tc))
df = pd.DataFrame(answers)
if not df.empty: