Skip to content

Commit

Permalink
Update csv_to_dict.py
Browse files Browse the repository at this point in the history
this actually broke another thing
  • Loading branch information
dlothian authored Jan 24, 2024
1 parent 95167f7 commit 9a88029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataBuilder/src/csv_to_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def cleanData(self):
f = open(self.input_file, 'r')
text = f.readlines()

lines = [line for line in text]
lines = [line.lower() for line in text]
# lines = [line.lower() for line in text]
lines = [re.sub(r" ,", ",", line) for line in lines]
lines = [re.sub(r", ", ",", line) for line in lines]
Expand Down

0 comments on commit 9a88029

Please sign in to comment.