From 6d7606fea8ae3551d580117970a6f281b3bf72b6 Mon Sep 17 00:00:00 2001 From: Alexander Koz <888526+boozook@users.noreply.github.com> Date: Wed, 15 May 2024 00:53:10 +0400 Subject: [PATCH] clippy format.rs Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- support/build/src/manifest/format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/build/src/manifest/format.rs b/support/build/src/manifest/format.rs index e657b740..13c257ce 100644 --- a/support/build/src/manifest/format.rs +++ b/support/build/src/manifest/format.rs @@ -61,7 +61,7 @@ impl Manifest { } 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 {