Skip to content

Commit 48483ba

Browse files
committed
Pylint fix
1 parent 96126a6 commit 48483ba

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

packet/commands.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def sync_freshmen(freshmen_csv):
6868
freshman_username=fresh_sig.freshman_username).delete()
6969

7070
# Add any new onfloor freshmen
71+
# pylint: disable=cell-var-from-loop
7172
current_fresh_sigs = set(map(lambda fresh_sig: fresh_sig.freshman_username, packet.fresh_signatures))
7273
for csv_freshman in filter(lambda csv_freshman: csv_freshman.rit_username not in current_fresh_sigs,
7374
freshmen_in_csv.values()):

packet/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Credit to Liam Middlebrook and Ram Zallan
22
# https://github.com/liam-middlebrook/gallery
3-
import datetime
43
from functools import wraps
54

65
import requests

0 commit comments

Comments
 (0)