Skip to content

Commit

Permalink
clippy fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
anmenaga committed Jan 9, 2025
1 parent 99f0057 commit b50ea8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fn main() {
exit(util::EXIT_JSON_ERROR);
}
};
let output_format = output_format.unwrap_or({ OutputFormat::None });
let output_format = output_format.unwrap_or(OutputFormat::None);
util::write_output(&json, output_format);
},
}
Expand Down

0 comments on commit b50ea8e

Please sign in to comment.