Skip to content

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

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

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

GitHub Actions / clippy succeeded Dec 11, 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.84.0-beta.4 (202008a1b 2024-12-07)
  • cargo 1.84.0-beta.4 (66221abde 2024-11-19)
  • clippy 0.1.84 (202008a1b8 2024-12-07)

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)
    |