Skip to content

Commit

Permalink
fix format to appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
valoq authored and marcospb19 committed Oct 22, 2024
1 parent 83f28cf commit e2151c9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/commands/decompress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,7 @@ fn smart_unpack(
question_policy: QuestionPolicy,
) -> crate::Result<ControlFlow<(), usize>> {
assert!(output_dir.exists());
let temp_dir = tempfile::Builder::new()
.prefix(".tmp-ouch-")
.tempdir_in(output_dir)?;
let temp_dir = tempfile::Builder::new().prefix(".tmp-ouch-").tempdir_in(output_dir)?;
let temp_dir_path = temp_dir.path();

info_accessible(format!(
Expand Down

0 comments on commit e2151c9

Please sign in to comment.