We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-else-continue
1 parent 1b88cd4 commit 6818b7aCopy full SHA for 6818b7a
.pylintrc
@@ -14,7 +14,6 @@ disable =
14
global-statement,
15
import-outside-toplevel,
16
cyclic-import,
17
- no-else-continue,
18
locally-disabled,
19
file-ignored
20
conditional/blueprints/intro_evals.py
@@ -104,7 +104,7 @@ def get_fid_cm_count(member_id):
104
105
if freshman_data is None:
106
continue
107
- elif freshman_data.freshman_eval_result != "Pending" and internal:
+ if freshman_data.freshman_eval_result != "Pending" and internal:
108
109
110
h_meetings = [m.meeting_id for m in get_hm(member, only_absent=True)]
0 commit comments