Skip to content

build(deps): Bump clap from 4.5.20 to 4.5.21 #227

build(deps): Bump clap from 4.5.20 to 4.5.21

build(deps): Bump clap from 4.5.20 to 4.5.21 #227

Triggered via pull request November 13, 2024 22:19
Status Success
Total duration 1m 0s
Artifacts

safety.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 warning
unneeded `return` statement: src/utils.rs#L61
warning: unneeded `return` statement --> src/utils.rs:61:17 | 61 | return Some(entry.into_path().parent().unwrap().into()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 61 - return Some(entry.into_path().parent().unwrap().into()); 61 + Some(entry.into_path().parent().unwrap().into()) |