Skip to content

Commit 3575529

Browse files
committed
made lint happy
1 parent b4d4a08 commit 3575529

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

conditional/blueprints/intro_evals.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from datetime import datetime
2-
31
import structlog
42
from flask import Blueprint, request
53
from sqlalchemy import func

conditional/blueprints/spring_evals.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,13 @@ def display_spring_evals(internal=False, user_dict=None):
112112
member_major_projects = major_projects.get(uid, [])
113113

114114
passed_mps = [project for project in member_major_projects if project['status'] == 'Passed']
115-
cms = req_cm(uid, coop_members)
116115

117116
member = {
118117
'name': name,
119118
'uid': uid,
120119
'status': spring_entry.status,
121120
'committee_meetings': cm_attended_count,
122-
'req_meetings': cms,
121+
'req_meetings': req_cm(uid, coop_members),
123122
'house_meetings_missed': member_missed_hms,
124123
'major_projects': member_major_projects
125124
}

0 commit comments

Comments
 (0)