Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
samypr100 committed Jun 16, 2024
1 parent 6656e00 commit 1a601d6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/uv-auth/src/keyring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ impl KeyringProvider {
.inspect_err(|err| warn!("Failure running `keyring` command: {err}"))
.ok()?;

let output = child.wait_with_output().await
let output = child
.wait_with_output()
.await
.inspect_err(|err| warn!("Failed to wait for `keyring` output: {err}"))
.ok()?;

Expand Down

0 comments on commit 1a601d6

Please sign in to comment.