Skip to content

Commit

Permalink
chore(clippy): address warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricschwyter committed Jul 22, 2023
1 parent 3ba77e2 commit 93f3d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async fn command(command: &Command) -> Result<bool, HueHueHueError> {
HueHueHue::with_config(config)
.discover()
.await
.map_err(|e| Into::<HueHueHueBackendError>::into(e))??;
.map_err(Into::<HueHueHueBackendError>::into)??;

return Ok(true);
}
Expand Down

0 comments on commit 93f3d1d

Please sign in to comment.