chore: clippy (#750)

* chore: clippy

* chore: fmt
This commit is contained in:
thesimplekid
2025-05-14 15:55:37 +01:00
committed by GitHub
parent 056ddecfeb
commit e268866446
38 changed files with 65 additions and 82 deletions

View File

@@ -246,11 +246,10 @@ FROM mint
for table in &tables {
let query = format!(
r#"
UPDATE {}
UPDATE {table}
SET mint_url = ?
WHERE mint_url = ?;
"#,
table
"#
);
sqlx::query(&query)