Skip to content

Update flake.lock

Update flake.lock #718

GitHub Actions / clippy succeeded Jan 12, 2025 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.85.0-beta.1 (e30eefff4 2025-01-08)
  • cargo 1.85.0-beta.1 (d73d2caf9 2024-12-31)
  • clippy 0.1.85 (e30eefff41 2025-01-08)

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