mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-06 03:40:59 +01:00
chore: fix formatting
This commit is contained in:
parent
801acb0264
commit
3e4ef00f4a
1 changed files with 8 additions and 2 deletions
|
@ -154,7 +154,13 @@ impl Project {
|
|||
let manifest = self.deser_manifest().await?;
|
||||
let used_paths = graph
|
||||
.iter()
|
||||
.map(|(id, node)| node.node.container_folder(id).parent().unwrap().to_path_buf())
|
||||
.map(|(id, node)| {
|
||||
node.node
|
||||
.container_folder(id)
|
||||
.parent()
|
||||
.unwrap()
|
||||
.to_path_buf()
|
||||
})
|
||||
.collect::<HashSet<_>>();
|
||||
let used_paths = Arc::new(used_paths);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue