Skip to content

Commit 9daf8c3

Browse files
Fix HM Attendance Filtering
A pass was used instead of a continue to exclude members who are on coop from house meeting attendance.
1 parent e829de2 commit 9daf8c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conditional/blueprints/attendance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def get_non_alumni_non_coop(internal=False):
8080
for account in active_members:
8181
if account.uid in coop_members:
8282
# Members who are on co-op don't need to go to house meeting.
83-
pass
83+
continue
8484

8585
eligible_members.append(
8686
{

0 commit comments

Comments
 (0)