Skip to content

Commit

Permalink
removed line_terminator due to compatibility issues
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoNeureiter committed Jun 27, 2023
1 parent fd58a1f commit 1a30caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbayes/tools/extract_feature_states.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def main(args):
output_path = select_save_file(default_dir=current_directory)

# Store the feature_states in a csv file
feature_states_df.to_csv(output_path, index=False, line_terminator='\n')
feature_states_df.to_csv(output_path, index=False)


if __name__ == '__main__':
Expand Down

0 comments on commit 1a30caa

Please sign in to comment.