formatting

This commit is contained in:
Ferdinand Schober
2024-07-01 17:02:37 +02:00
parent aba9ddbdcb
commit 1599e6e76a

View File

@@ -152,7 +152,9 @@ pub enum MacOSEmulationCreationError {
impl Display for MacOSEmulationCreationError { impl Display for MacOSEmulationCreationError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self { match self {
MacOSEmulationCreationError::EventSourceCreation => write!(f, "could not create event source"), MacOSEmulationCreationError::EventSourceCreation => {
write!(f, "could not create event source")
}
} }
} }
} }