Format Rust code using rustfmt

This commit is contained in:
github-actions[bot] 2024-10-15 19:40:21 +00:00 committed by GitHub
parent 1b43493c0e
commit 5fc94c4dcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -171,12 +171,7 @@ pub async fn fd_manager(
}
#[cfg(target_os = "windows")]
if let Some(message) = recv_from_loop.recv().await {
match handle_message(
&our_node,
message,
&mut state,
&send_to_loop,
).await {
match handle_message(&our_node, message, &mut state, &send_to_loop).await {
Ok(Some(to_print)) => {
Printout::new(2, to_print).send(&send_to_terminal).await;
}