We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2a6b04 commit 2fc1371Copy full SHA for 2fc1371
1 file changed
conditional/util/member.py
@@ -158,15 +158,15 @@ def req_cm(uid, members_on_coop=None):
158
CurrentCoops.date_created > start_of_year()).first()
159
if co_op:
160
on_coop = True
161
-
+
162
spring_semester_start = datetime(start_of_year().year + 1, 1, 1)
163
164
is_spring_intro = FreshmanEvalData.query.filter(
165
FreshmanEvalData.uid == uid,
166
FreshmanEvalData.freshman_eval_result == "Passed",
167
FreshmanEvalData.eval_date >= spring_semester_start
168
).first() is not None
169
170
if on_coop or is_spring_intro:
171
return 15
172
return 30
0 commit comments