Skip to content

Commit c1a4754

Browse files
Fixed bug
1 parent ff65a74 commit c1a4754

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)