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 43d05c1 commit 89d1dde
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)

Check warning on line 60 in src-tauri/main.rs

View check run for this annotation

Codecov / codecov/patch

src-tauri/main.rs#L60

Added line #L60 was not covered by tests
.discover()
.await
.map_err(|e| Into::<HueHueHueBackendError>::into(e))??;
.map_err(Into::<HueHueHueBackendError>::into)??;

Check warning on line 63 in src-tauri/main.rs

View check run for this annotation

Codecov / codecov/patch

src-tauri/main.rs#L62-L63

Added lines #L62 - L63 were not covered by tests

return Ok(true);
}
Expand Down

0 comments on commit 89d1dde

Please sign in to comment.