diff --git a/unitgrade/unitgrade_helpers.py b/unitgrade/unitgrade_helpers.py index c19e5cc29ef00493e10a5c25e5a85832a6e364ff..ed2c391ecbdd6f731b89a52b5a5ac6b224bfef80 100644 --- a/unitgrade/unitgrade_helpers.py +++ b/unitgrade/unitgrade_helpers.py @@ -134,7 +134,7 @@ def evaluate_report(report, question=None, qitem=None, passall=False, verbose=Fa start = time.time() (current, possible) = item.get_points(show_expected=show_expected, show_computed=show_computed,unmute=unmute, passall=passall) q_[j] = {'w': iw, 'possible': possible, 'obtained': current, 'hidden': hidden, 'computed': str(item._computed_answer)} - tsecs = np.round(time.time-start, 2) + tsecs = np.round(time.time()-start, 2) # q.possible += possible * iw # q.obtained += current * iw