File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,10 @@ def check(self, query):
80
80
# check 2: calculated values
81
81
# correct result
82
82
correct_list = correct_answwer .loc [correct_answer ["time_to_answer" ].notna (), "time_to_answer" ]
83
- correct_number = correct_list .sum ()/ len (correct_list ))
83
+ correct_number = correct_list .sum ()/ len (correct_list )
84
84
# submitted value
85
85
submitted_list = results .loc [results ["time_to_answer" ].notna (), "time_to_answer" ]
86
- submitted_number = submitted_list .sum ()/ len (submitted_list ))
86
+ submitted_number = submitted_list .sum ()/ len (submitted_list )
87
87
assert (int (submitted_number )== int (correct_number )), ("The results don't look right. Please make sure that the part of the query "
88
88
"that calculates the values in the `time_to_answer` column is unmodified." )
89
89
You can’t perform that action at this time.
0 commit comments