From 93f3d1d37d7537467192d74924d85a31acf4d43d Mon Sep 17 00:00:00 2001 From: Cedric Schwyter Date: Sat, 22 Jul 2023 11:51:11 +0200 Subject: [PATCH] chore(clippy): address warnings --- src-tauri/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/main.rs b/src-tauri/main.rs index bf4adeb..1f0ed29 100644 --- a/src-tauri/main.rs +++ b/src-tauri/main.rs @@ -60,7 +60,7 @@ async fn command(command: &Command) -> Result { HueHueHue::with_config(config) .discover() .await - .map_err(|e| Into::::into(e))??; + .map_err(Into::::into)??; return Ok(true); }