Skip to content

Commit

Permalink
fix: csv.reader bug that got introduced in #2a79f01c
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed May 5, 2021
1 parent 13b2efc commit 49243c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lbsntransform/input/load_data.py
Expand Up @@ -450,7 +450,7 @@ def fetch_csv_data_from_file(self, file_handle):
if self.use_csv_dictreader:
record_reader = csv.DictReader(f=file_handle, **kwargs)
return record_reader
record_reader = csv.reader(file_handle=file_handle, **kwargs)
record_reader = csv.reader(file_handle, **kwargs)
return record_reader

@staticmethod
Expand Down

0 comments on commit 49243c5

Please sign in to comment.