Skip to content

Commit

Permalink
Appease clippy's latest gripes for CI (FuelLabs#1193)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchmindtree authored Apr 8, 2022
1 parent 4fcce7a commit 637e8ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forc/src/ops/forc_explorer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ async fn get_github_releases() -> Result<Vec<GitHubRelease>, reqwest::Error> {
.header("User-Agent", "warp")
.send()
.await?;
Ok(response.json().await?)
response.json().await
}

fn get_latest_release_name(releases: &[GitHubRelease]) -> &str {
Expand Down

0 comments on commit 637e8ac

Please sign in to comment.