Fix new clippy errors

The failing lint was added in Rust v1.95.0.
This commit is contained in:
Oliver Hamlet
2026-04-28 19:00:22 +01:00
parent 391b9ad7c9
commit 1970a0b30c
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ impl std::fmt::Display for VerboseError {
Ok(())
}
Self::UndefinedGroupError(group) => {
write!(f, "UndefinedGroupError: {group}",)
write!(f, "UndefinedGroupError: {group}")
}
Self::PluginNotLoadedError(plugin) => write!(f, "PluginNotLoadedError: {plugin}"),
Self::InvalidArgument(e) => {