Fix remaining clippy lints (#687)

The eighth (and final) in a series of PRs that aim to get CI passing
This commit is contained in:
Kenneth Loeffler
2023-06-30 11:06:43 -07:00
committed by GitHub
parent 8646b2dfce
commit 67674d53a2
4 changed files with 27 additions and 13 deletions

View File

@@ -54,7 +54,7 @@ fn main() -> Result<(), anyhow::Error> {
});
let out_path = Path::new(&out_dir).join("plugin.bincode");
let out_file = File::create(&out_path)?;
let out_file = File::create(out_path)?;
bincode::serialize_into(out_file, &snapshot)?;