fix: apply rustfmt to workspace boundary

This commit is contained in:
lucaronin
2026-05-08 01:02:34 +02:00
parent 5e7d29f620
commit 5e978e315e

View File

@@ -140,7 +140,9 @@ fn load_registered_vault_roots() -> Result<Vec<VaultRootPaths>, String> {
Ok(roots)
}
fn find_registered_root_for_absolute_path(raw_path: &str) -> Result<Option<VaultRootPaths>, String> {
fn find_registered_root_for_absolute_path(
raw_path: &str,
) -> Result<Option<VaultRootPaths>, String> {
let requested = PathBuf::from(expand_tilde(raw_path).into_owned());
if !requested.is_absolute() {
return Ok(None);