Skip to content

Commit f341862

Browse files
committed
Fix format
1 parent 18da3cb commit f341862

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/smbcloud-model/src/frontend_app.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ where
109109
"monorepo" => Ok(Runner::Monorepo),
110110
other => Err(serde::de::Error::custom(format!("unknown runner: {other}"))),
111111
},
112-
EnumWireValue::Int(other) => Err(serde::de::Error::custom(format!(
113-
"unknown runner: {other}"
114-
))),
112+
EnumWireValue::Int(other) => {
113+
Err(serde::de::Error::custom(format!("unknown runner: {other}")))
114+
}
115115
}
116116
}
117117

0 commit comments

Comments
 (0)