Skip to content

Commit

Permalink
Fix Clippy warning (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baarsgaard authored Nov 1, 2023
1 parent b79036e commit 0b76fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inquire/src/prompts/multiselect/prompt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ where
.filter(|i| *i < mso.options.len())
.collect()
})
.unwrap_or_else(BTreeSet::new);
.unwrap_or_default();

Ok(Self {
message: mso.message,
Expand Down

0 comments on commit 0b76fe4

Please sign in to comment.