Skip to content

Commit 66685ce

Browse files
Fixed typo
1 parent 6e03197 commit 66685ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/evaluation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ def evaluation_function(response, answer, params):
9898
feedback_format = general_format
9999

100100
if all([len(x) == 1 for x in answer]) or all([not isinstance(x,list) for x in answer]):
101-
feedback_format = onedim_format
101+
feedback_format = col_format
102102
elif len(answer) == 1 and all([not isinstance(x,list) for x in answer[0]]):
103-
feedback_format = onedim_format
103+
feedback_format = row_format
104104
elif len(answer) > 1 and\
105105
all([isinstance(elem,list) for elem in answer]) and\
106106
all([len(elem) == len(answer[0]) for elem in answer]):

0 commit comments

Comments
 (0)