Skip to content

Update Rust crate clap to v4.5.26 #1091

Update Rust crate clap to v4.5.26

Update Rust crate clap to v4.5.26 #1091

GitHub Actions / clippy succeeded Jan 10, 2025 in 1s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.84.0 (9fc6b4312 2025-01-07)
  • cargo 1.84.0 (66221abde 2024-11-19)
  • clippy 0.1.84 (9fc6b43126 2025-01-07)

Annotations

Check warning on line 147 in src/provider/cloudflare/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this `match` expression can be replaced with `?`

warning: this `match` expression can be replaced with `?`
   --> src/provider/cloudflare/mod.rs:144:31
    |
144 |           let current_records = match self.records() {
    |  _______________________________^
145 | |             Ok(current) => current,
146 | |             Err(e) => return Err(e),
147 | |         };
    | |_________^ help: try instead: `self.records()?`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
    = note: `#[warn(clippy::question_mark)]` on by default