Skip to content

Commit 6818b7a

Browse files
committed
Correct no-else-continue
1 parent 1b88cd4 commit 6818b7a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.pylintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ disable =
1414
global-statement,
1515
import-outside-toplevel,
1616
cyclic-import,
17-
no-else-continue,
1817
locally-disabled,
1918
file-ignored
2019

conditional/blueprints/intro_evals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def get_fid_cm_count(member_id):
104104

105105
if freshman_data is None:
106106
continue
107-
elif freshman_data.freshman_eval_result != "Pending" and internal:
107+
if freshman_data.freshman_eval_result != "Pending" and internal:
108108
continue
109109

110110
h_meetings = [m.meeting_id for m in get_hm(member, only_absent=True)]

0 commit comments

Comments
 (0)