From 134acc52c0f339dd8bf96d4ffc508cdebe66b7d2 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 18 Jul 2026 18:51:01 +0900 Subject: chore: rustfmt --- crates/shirabe/src/util/filesystem.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crates/shirabe/src/util/filesystem.rs') diff --git a/crates/shirabe/src/util/filesystem.rs b/crates/shirabe/src/util/filesystem.rs index f3cb2e63..70bf69f7 100644 --- a/crates/shirabe/src/util/filesystem.rs +++ b/crates/shirabe/src/util/filesystem.rs @@ -905,7 +905,9 @@ impl Filesystem { /// Hands out the executor handle itself so async callers can hold only a shared borrow /// across their awaits (a RefMut held across an await panics once calls overlap). - pub(crate) fn get_process_handle(&mut self) -> std::rc::Rc> { + pub(crate) fn get_process_handle( + &mut self, + ) -> std::rc::Rc> { if self.process_executor.is_none() { self.process_executor = Some(std::rc::Rc::new(std::cell::RefCell::new( ProcessExecutor::new(None), -- cgit v1.3.1