Skip to content

Commit 686c3e2

Browse files
Merge pull request #12 from lambda-feedback/tr-40
Fixed bug
2 parents 5ed7824 + c1a4754 commit 686c3e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/evaluation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def evaluation_function(response, answer, params):
9696

9797
feedback_format = general_format
9898

99-
if all([len(x) == 1 for x in answer]) or all([not isinstsance(x,list) for x in answer]):
99+
if all([len(x) == 1 for x in answer]) or all([not isinstance(x,list) for x in answer]):
100100
feedback_format = onedim_format
101101
elif len(answer) == 1 and all([not isinstance(x,list) for x in answer[0]]):
102102
feedback_format = onedim_format

0 commit comments

Comments
 (0)