Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed Jan 12, 2023
1 parent 215a688 commit 09ffd62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cellfilter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,7 @@ fn process_unfiltered(
}

let pm_path = parent.join("permit_map.bin");
let pm_file =
std::fs::File::create(pm_path).context("could not create serialization file.")?;
let pm_file = std::fs::File::create(pm_path).context("could not create serialization file.")?;
let mut pm_writer = BufWriter::new(&pm_file);
bincode::serialize_into(&mut pm_writer, &hm)
.context("couldn't serialize permit list mapping.")?;
Expand Down

0 comments on commit 09ffd62

Please sign in to comment.