Skip to content

Commit

Permalink
update read_csv in csv reformatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Troy committed Jun 4, 2024
1 parent 8af7385 commit 64b4519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liiatools/reformat_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ def process(input):
for file in files:
file_loc = f"{root}\\{file}"
if file_loc.endswith(".csv"):
df = pd.read_csv(file_loc)
df = pd.read_csv(file_loc, sep=",", header=0)
df.to_csv(file_loc, index=False)

0 comments on commit 64b4519

Please sign in to comment.