Skip to content

Commit

Permalink
Fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnan-chandra committed Jul 27, 2024
1 parent 7ea4507 commit ffcad16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv/src/commands/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub(crate) fn help(query: &[String], printer: Printer, no_pager: bool) -> Result
match pager.to_str() {
Some("less") => {
let prompt = format!("help: uv {}", query.join(" "));
spawn_pager(&pager, &["-R", "-P", &prompt], &help_ansi)?
spawn_pager(&pager, &["-R", "-P", &prompt], &help_ansi)?;
}
Some(x) if !x.is_empty() => spawn_pager(&pager, &[], &help)?,
_ => {
Expand Down

0 comments on commit ffcad16

Please sign in to comment.