fix(deps): update rust crate serde to v1.0.209 #93
GitHub Actions / clippy
succeeded
Aug 30, 2024 in 0s
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (0)
Filtered Findings (1)
src/bin/main.rs|73 col 12| warning: redundant pattern matching, consider using is_some()
--> src/bin/main.rs:73:12
|
73 | if let Some(_) = &opts.background {
| -------^^^^^^^------------------- help: try: if opts.background.is_some()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: #[warn(clippy::redundant_pattern_matching)]
on by default
Loading