Skip to content

Commit

Permalink
Remove unneeded "return"
Browse files Browse the repository at this point in the history
  • Loading branch information
Splines committed Jul 29, 2023
1 parent fcfe655 commit 39909d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fn parse_graph_from_file(file: &std::path::PathBuf) -> LouvainGraph {
g.insert_edge(source, target, weight);
}

return g;
g
}

pub fn run() {
Expand Down

0 comments on commit 39909d8

Please sign in to comment.