Skip to content

Commit

Permalink
🐛 remove index=False in saving to pickle (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlenain authored May 27, 2020
1 parent 376d5ec commit f7b8b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/surfboard
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ if __name__ == '__main__':
sample_rate=args.fs, num_proc=args.num_proc,
)
output_dataframe["fnames"] = files_list
output_dataframe.to_pickle(args.output_file, index=False)
output_dataframe.to_pickle(args.output_file)


else:
Expand Down

0 comments on commit f7b8b21

Please sign in to comment.