From 1599e6e76a11e68af3a88231c2d9f3c69ad6804a Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Mon, 1 Jul 2024 17:02:37 +0200 Subject: [PATCH] formatting --- src/emulate/error.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/emulate/error.rs b/src/emulate/error.rs index 2692ba7..10c799d 100644 --- a/src/emulate/error.rs +++ b/src/emulate/error.rs @@ -152,7 +152,9 @@ pub enum MacOSEmulationCreationError { impl Display for MacOSEmulationCreationError { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { - MacOSEmulationCreationError::EventSourceCreation => write!(f, "could not create event source"), + MacOSEmulationCreationError::EventSourceCreation => { + write!(f, "could not create event source") + } } } }