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.
1 parent 96126a6 commit 48483baCopy full SHA for 48483ba
packet/commands.py
@@ -68,6 +68,7 @@ def sync_freshmen(freshmen_csv):
68
freshman_username=fresh_sig.freshman_username).delete()
69
70
# Add any new onfloor freshmen
71
+ # pylint: disable=cell-var-from-loop
72
current_fresh_sigs = set(map(lambda fresh_sig: fresh_sig.freshman_username, packet.fresh_signatures))
73
for csv_freshman in filter(lambda csv_freshman: csv_freshman.rit_username not in current_fresh_sigs,
74
freshmen_in_csv.values()):
packet/utils.py
@@ -1,6 +1,5 @@
1
# Credit to Liam Middlebrook and Ram Zallan
2
# https://github.com/liam-middlebrook/gallery
3
-import datetime
4
from functools import wraps
5
6
import requests
0 commit comments