build(deps-dev): bump ruff from 0.15.18 to 0.15.21 in /py #330
lint.yml
on: push
lint-python-code
11s
lint-rust-code
28s
Annotations
2 warnings
|
/home/runner/work/mwutil/mwutil/rs/src/main.rs#L110
redundant reference in `format!` argument
|
|
redundant reference in `format!` argument:
rs/src/main.rs#L110
warning: redundant reference in `format!` argument
--> src/modules/clone.rs:110:81
|
110 | repo_identifier = format!("{}/{}", repo_type.get_plural_name(), &name);
| ^^^^^ help: remove the redundant `&`: `name`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.97.0/index.html#useless_borrows_in_formatting
= note: `#[warn(clippy::useless_borrows_in_formatting)]` on by default
|