Skip to content

[pre-commit.ci] pre-commit autoupdate - #112

Open
pre-commit-ci[bot] wants to merge 2 commits into
mainfrom
pre-commit-ci-update-config
Open

[pre-commit.ci] pre-commit autoupdate#112
pre-commit-ci[bot] wants to merge 2 commits into
mainfrom
pre-commit-ci-update-config

[pre-commit.ci] auto fixes from pre-commit.com hooks

a249d77
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / clippy failed Jul 27, 2026 in 0s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.97.1 (8bab26f4f 2026-07-14)
  • cargo 1.97.1 (c980f4866 2026-06-30)
  • clippy 0.1.97 (8bab26f4f6 2026-07-14)

Annotations

Check failure on line 53 in src/statement/query.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

redundant reference in `format!` argument

error: redundant reference in `format!` argument
  --> src/statement/query.rs:53:28
   |
53 |             format!("${}", &counter)
   |                            ^^^^^^^^ help: remove the redundant `&`: `counter`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.97.0/index.html#useless_borrows_in_formatting
   = note: `-D clippy::useless-borrows-in-formatting` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::useless_borrows_in_formatting)]`