From 98d237270d4581ff8153a33d92b5897fdc9b5536 Mon Sep 17 00:00:00 2001 From: Alain Emilia Anna Zscheile Date: Sat, 16 Nov 2024 16:10:54 +0100 Subject: [PATCH] chore: fix cargo fmt --- src/autorouter/invoker.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/autorouter/invoker.rs b/src/autorouter/invoker.rs index e659259..46ba723 100644 --- a/src/autorouter/invoker.rs +++ b/src/autorouter/invoker.rs @@ -68,11 +68,11 @@ pub trait GetObstacles { /// Error types that can occur during the invocation of commands #[derive(Error, Debug, Clone)] -pub enum InvokerError { +pub enum InvokerError { /// Wraps errors related to command history operations #[error(transparent)] History(#[from] HistoryError), - + /// Wraps errors related to autorouter operations #[error(transparent)] Autorouter(#[from] AutorouterError),