Skip to content

Commit

Permalink
Remove empty string in output writer
Browse files Browse the repository at this point in the history
(clippy suggestion)
  • Loading branch information
Splines committed Jul 31, 2023
1 parent 12a0af1 commit ee5da79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cli/src/io/output_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub fn write_hierarchy_and_modularity_to_file(
serde_json::to_writer(&output, &hierarchy).expect("Could not write hierarchy to output file");

// newline
writeln!(&output, "").unwrap();
writeln!(&output).unwrap();

// Modularities
// TODO: right now we don't do anything with the modularities later on
Expand Down

0 comments on commit ee5da79

Please sign in to comment.