Skip to content

Commit

Permalink
clippy format.rs
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
boozook and github-actions[bot] authored May 14, 2024
1 parent 33fa4aa commit 6d7606f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/build/src/manifest/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl<T: crate::value::Value> Manifest<T> {
}
for (key, value) in &self.extra {
if let Some(value) = value.as_str() {
result.push_str(&to_row(key, format!("{value}")));
result.push_str(&to_row(key, value));
} else if let Some(value) = value.as_bool() {
result.push_str(&to_row(key, format!("{value}")));
} else {
Expand Down

0 comments on commit 6d7606f

Please sign in to comment.