chore: remove stale FIXME comment

This commit is contained in:
alexandre pasmantier 2025-06-16 20:44:58 +02:00 committed by Alex Pasmantier
parent e06e5e6a37
commit ab1efed88d

View File

@ -148,9 +148,6 @@ where
D: serde::Deserializer<'de>,
{
let raw: String = serde::Deserialize::deserialize(deserializer)?;
// FIXME: we want to fall back to the default command if parsing fails
// but since everything uses MultiTemplates, we might need a wrapper enum
// with a Raw variant.
Template::parse(&raw).map_err(serde::de::Error::custom)
}