Skip to content

Commit

Permalink
fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timvw committed Oct 24, 2023
1 parent 2ad5173 commit 8649a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ fn update_s3_console_url(s: &str) -> (bool, String) {
.into_owned()
.collect()
})
.unwrap_or_else(HashMap::new);
.unwrap_or_default();
params
.get("prefix")
.map(|prefix| format!("s3://{}/{}", bucket_name, prefix))
Expand Down

0 comments on commit 8649a4a

Please sign in to comment.