Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tuommaki committed Dec 7, 2023
1 parent 11b533a commit 6e6831e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async fn main() -> Result<()> {
directory,
} => {
let export_path = Path::new(&directory);
std::fs::create_dir_all(&export_path)?;
std::fs::create_dir_all(export_path)?;
let exporter = SnapshotExporter::new(export_path, db_path);
exporter.export_snapshot(chunk_size)?;
}
Expand Down

0 comments on commit 6e6831e

Please sign in to comment.