Skip to content

Commit

Permalink
drop index
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelsoup42 committed Sep 10, 2023
1 parent 9b5f088 commit 196eec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cardano_account_pandas_dumper/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def main():
warnings.warn(f"Failed to write pandas file: {exception}")
if args.csv_output:
try:
dataframe.to_csv(args.csv_output, index=True)
dataframe.to_csv(args.csv_output, index=False)
except OSError as exception:
warnings.warn(f"Failed to write CSV file: {exception}")
print("Done.")
Expand Down

0 comments on commit 196eec1

Please sign in to comment.