From 0fca6f1622c8fcde25653cb7af28047f82fbd937 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 12 Dec 2024 23:15:35 +0300 Subject: [PATCH] clippy --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 532e3eb6..74173bd5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -237,7 +237,7 @@ async fn main() -> io::Result<()> { info!("Fetching properties: {:?}", properties); for property in properties { if let Some(data) = send_ipc_command("get_property", &[json!(property)]).await? { - println!("{}: {}", property, data); + println!("{property}: {data}"); } } }