diff --git a/crates/binstalk-git-repo-api/src/gh_api_client/release_artifacts.rs b/crates/binstalk-git-repo-api/src/gh_api_client/release_artifacts.rs index c561e4ae..312d8a73 100644 --- a/crates/binstalk-git-repo-api/src/gh_api_client/release_artifacts.rs +++ b/crates/binstalk-git-repo-api/src/gh_api_client/release_artifacts.rs @@ -74,13 +74,7 @@ pub(super) fn fetch_release_artifacts_restful_api( tag, }: &GhRelease, ) -> impl Future> + Send + Sync + 'static { - issue_restful_api( - client, - &[ - "repos", owner, repo, "releases", "tags", - tag, - ], - ) + issue_restful_api(client, &["repos", owner, repo, "releases", "tags", tag]) } #[derive(Debug, Deserialize)]