Skip to content

build(deps): bump the rust-minor-patch group across 1 directory with 8 updates #683

build(deps): bump the rust-minor-patch group across 1 directory with 8 updates

build(deps): bump the rust-minor-patch group across 1 directory with 8 updates #683

GitHub Actions / clippy succeeded Nov 4, 2024 in 0s

clippy

1 warning

Details

Results

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

Versions

  • rustc 1.83.0-beta.4 (67512dee7 2024-11-02)
  • cargo 1.83.0-beta.4 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (67512de 2024-11-02)

Annotations

Check warning on line 603 in challenges/src/endpoints/coding_challenges/submissions.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this boolean expression can be simplified

warning: this boolean expression can be simplified
   --> challenges/src/endpoints/coding_challenges/submissions.rs:600:12
    |
600 |           if !self
    |  ____________^
601 | |             .ids
602 | |             .get(&key)
603 | |             .is_some_and(|&x| self.id_position(x) == 0)
    | |_______________________________________________________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonminimal_bool
    = note: `#[warn(clippy::nonminimal_bool)]` on by default
help: try
    |
600 ~         if self
601 +             .ids
602 +             .get(&key).is_none_or(|&x| self.id_position(x) != 0)
    |