From f9380ca7e4f25f4445370a9617c2ec6080467f2c Mon Sep 17 00:00:00 2001 From: Lennart K <18233294+lennart-k@users.noreply.github.com> Date: Thu, 24 Jul 2025 11:46:28 +0200 Subject: [PATCH] clippy appeasement --- crates/ical/src/icalendar/object.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/ical/src/icalendar/object.rs b/crates/ical/src/icalendar/object.rs index ef27b84..fb772d0 100644 --- a/crates/ical/src/icalendar/object.rs +++ b/crates/ical/src/icalendar/object.rs @@ -47,8 +47,7 @@ impl rustical_xml::ValueDeserialize for CalendarObjectType { "VJOURNAL" => Ok(Self::Journal), _ => Err(rustical_xml::XmlError::InvalidValue( rustical_xml::ParseValueError::Other(format!( - "Invalid value '{}', must be VEVENT, VTODO, or VJOURNAL", - val + "Invalid value '{val}', must be VEVENT, VTODO, or VJOURNAL" )), )), }