Skip to content

Commit

Permalink
Fix a lnter error.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarutak authored and tylerfanelli committed Jul 12, 2023
1 parent 246e668 commit 2e93b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ async fn download(url: &str, usage: Usage) -> Result<sev::Certificate> {
sev::Certificate::decode(out, ())
.context(format!("failed to decode {} certificate", usage))
}
Err(e) => return Err(anyhow::Error::new(e).context("failed to read response body")),
Err(e) => Err(anyhow::Error::new(e).context("failed to read response body")),
}
}

Expand Down

0 comments on commit 2e93b07

Please sign in to comment.