Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
iheredia committed Feb 1, 2019
1 parent e834986 commit 399f1d7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_data_cleaner.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,7 @@ def nan_to_empty_string_list(iterable):

def raw_csv(file_path):
with open(file_path, 'rb') as csvfile:
return [
row
for row in csv.reader(csvfile)
]
return [row for row in csv.reader(csvfile)]


# @unittest.skip("skip")
Expand Down

0 comments on commit 399f1d7

Please sign in to comment.