From 9423d40b804982d8d369feac13b67d22d86f1b1b Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sun, 25 May 2025 15:17:27 -0400 Subject: [PATCH] Format watcher module --- libmarlin/src/watcher.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libmarlin/src/watcher.rs b/libmarlin/src/watcher.rs index f5ffaf5..d33b3ed 100644 --- a/libmarlin/src/watcher.rs +++ b/libmarlin/src/watcher.rs @@ -109,7 +109,8 @@ struct RemoveTracker { impl RemoveTracker { fn record(&mut self, path: &PathBuf) { if let Ok(h) = Handle::from_path(path) { - self.map.insert(handle_key(&h), (path.clone(), Instant::now())); + self.map + .insert(handle_key(&h), (path.clone(), Instant::now())); return; }