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 731fb6f commit 42cf71cCopy full SHA for 42cf71c
packet/commands.py
@@ -33,9 +33,9 @@ def create_secret():
33
34
class CSVFreshman:
35
def __init__(self, row):
36
- self.name = row[0]
37
- self.rit_username = row[3]
38
- self.onfloor = row[1] == 'TRUE'
+ self.name = row[0].strip()
+ self.rit_username = row[3].strip()
+ self.onfloor = row[1].strip() == 'TRUE'
39
40
41
def parse_csv(freshmen_csv):
0 commit comments