Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Soltis authored and Greg Soltis committed Jan 23, 2024
1 parent 1f592ff commit 922c5d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/run/graph_visualizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub(crate) fn write_graph(
match graph_opts {
GraphOpts::Stdout => render_dot_graph(std::io::stdout(), engine, single_package)?,
GraphOpts::File(raw_filename) => {
let (filename, extension) = filename_and_extension(cwd, &raw_filename)?;
let (filename, extension) = filename_and_extension(cwd, raw_filename)?;
if extension == "mermaid" {
render_mermaid_graph(&filename, engine, single_package)?;
} else if extension == "html" {
Expand Down

0 comments on commit 922c5d7

Please sign in to comment.