Skip to content

Commit

Permalink
fixed jcsv failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruibin-Liu committed Nov 12, 2024
1 parent 07360db commit 5a9ddcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moldf/write_jcsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ def write_jcsv(
for key, df in data.items():
key_line = f"#{key}{line_terminator}"
out_file.write(key_line)
out_file.write(df.to_csv(**kwargs))
out_file.write(df.to_csv(index=False, **kwargs))

0 comments on commit 5a9ddcc

Please sign in to comment.