fix some pedantic lints

This commit is contained in:
steven-omaha
2023-01-10 15:25:54 +01:00
parent 1bf19f4669
commit 09ff4f4bfb
4 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ impl Group {
let path = file.path();
let group =
Group::try_from(&path).with_context(|| format!("reading group file {:?}", path))?;
Group::try_from(&path).with_context(|| format!("reading group file {path:?}"))?;
result.insert(group);
}