rework section loading

This commit is contained in:
steven-omaha
2023-01-09 19:06:51 +01:00
parent 4907787911
commit 26c1e317bd
8 changed files with 32 additions and 14 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ impl Group {
let file = entry.context("getting a file")?;
let path = file.path();
let group = Group::try_from(dbg!(path))?;
let group = Group::try_from(path)?;
result.insert(group);
}