Skip to content

Commit a5ed7e2

Browse files
committed
lint fix
1 parent 85c881e commit a5ed7e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conditional/util/member.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def gatekeep_status(username):
330330
)
331331
.count()
332332
)
333-
result = eligibility_of_groups and (d_meetings >= 6 and t_seminars >= 2 and h_meetings_missed < 2)
333+
result = eligibility_of_groups and (d_meetings >= 6 and t_seminars >= 2 and h_meetings_missed < 2) # pylint: disable=chained-comparison
334334

335335
return {
336336
"result": result,

0 commit comments

Comments
 (0)