Skip to content

Commit 1ef45b7

Browse files
committed
fix clippy uninlined_format_args for rust 1.67.0
1 parent eb9e41b commit 1ef45b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/updater.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ pub async fn delete(dp: &DinoParkSettings, n: &Notification) -> Result<Value, Er
170170
.map_ok(|_| info!("deleted from pictures: {}", &id));
171171
if let Some(ref groups_delete_endpoint) = dp.groups_delete_endpoint {
172172
let groups_delete = Client::new()
173-
.delete(&format!("{}/{}", groups_delete_endpoint, uuid))
173+
.delete(&format!("{groups_delete_endpoint}/{uuid}"))
174174
.send()
175175
.map_err(UpdateError::GroupsDelete)
176176
.map_ok(|_| info!("updated groups for: {}", &id));

0 commit comments

Comments
 (0)