mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-03 15:15:33 +00:00
Re-enable clippy useless-format
(#14095)
This commit is contained in:
parent
fb94b71e63
commit
b7e32b0a18
6 changed files with 7 additions and 5 deletions
|
@ -53,7 +53,7 @@ impl Violation for EscapeSequenceInDocstring {
|
|||
}
|
||||
|
||||
fn fix_title(&self) -> Option<String> {
|
||||
Some(format!(r#"Add `r` prefix"#))
|
||||
Some(r#"Add `r` prefix"#.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue