Skip to content

Commit

Permalink
Make the condition for advancing be 15 finished students.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Nov 18, 2024
1 parent 76a70b1 commit 60c716e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hubbleds/pages/04-explore-data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def load_class_data():
else:
class_data_points = class_measurements
ids = [int(id) for id in np.unique([m.student_id for m in class_measurements])]
ready = len(class_measurements) >= 60
ready = len(class_measurements) >= 5 * 15
if ready:
ids = [int(id) for id in np.unique([m.student_id for m in class_measurements])]
student_ids.set(ids)
Expand Down

0 comments on commit 60c716e

Please sign in to comment.