From 5f43faebb2725d7afeada9fc273b2b8016d5c4eb Mon Sep 17 00:00:00 2001 From: Christien Rioux Date: Sun, 11 Aug 2024 09:59:04 -0700 Subject: [PATCH] more fmt --- veilid-cli/src/cursive_ui.rs | 1 - veilid-tools/src/ipc/ipc_async_std/unix.rs | 2 +- veilid-tools/src/ipc/ipc_tokio/unix.rs | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/veilid-cli/src/cursive_ui.rs b/veilid-cli/src/cursive_ui.rs index 01c3af66..3ef05691 100644 --- a/veilid-cli/src/cursive_ui.rs +++ b/veilid-cli/src/cursive_ui.rs @@ -1384,7 +1384,6 @@ impl UISender for CursiveUISender { ), ); } - } impl CursiveUISender { pub fn push_styled(&self, styled_string: StyledString) -> std::io::Result<()> { diff --git a/veilid-tools/src/ipc/ipc_async_std/unix.rs b/veilid-tools/src/ipc/ipc_async_std/unix.rs index 4d6c1bbd..7679d246 100644 --- a/veilid-tools/src/ipc/ipc_async_std/unix.rs +++ b/veilid-tools/src/ipc/ipc_async_std/unix.rs @@ -109,7 +109,7 @@ impl IpcListener { if self.path.is_none() { return Box::pin(std::future::ready(Err(io::Error::from( io::ErrorKind::NotConnected, - )))); + )))); } let this = IpcListener { path: self.path.clone(), diff --git a/veilid-tools/src/ipc/ipc_tokio/unix.rs b/veilid-tools/src/ipc/ipc_tokio/unix.rs index 0a2f1a44..761a2d73 100644 --- a/veilid-tools/src/ipc/ipc_tokio/unix.rs +++ b/veilid-tools/src/ipc/ipc_tokio/unix.rs @@ -118,7 +118,7 @@ impl IpcListener { if self.path.is_none() { return Box::pin(std::future::ready(Err(io::Error::from( io::ErrorKind::NotConnected, - )))); + )))); } let this = IpcListener { path: self.path.clone(),