From 6e42a375c8e03cf99f1c307d10161e55de8cedb7 Mon Sep 17 00:00:00 2001 From: Amanjeev Sethi Date: Tue, 7 Jan 2025 16:11:06 -0500 Subject: [PATCH] Review: format fix Reviewed-by: Ana Hobden --- crates/criticalup-core/src/errors.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/criticalup-core/src/errors.rs b/crates/criticalup-core/src/errors.rs index 09a3734c..506b16a9 100644 --- a/crates/criticalup-core/src/errors.rs +++ b/crates/criticalup-core/src/errors.rs @@ -186,6 +186,8 @@ pub enum BinaryProxyUpdateError { }, #[error("Failed to create the parent directory {}.", .0.display())] ParentDirectoryCreationFailed(PathBuf, #[source] std::io::Error), - #[error("The path of the proxy binary provided is a directory but needs to be a file or symlink.")] + #[error( + "The path of the proxy binary provided is a directory but needs to be a file or symlink." + )] ProxyBinaryShouldNotBeDir(PathBuf), }