From 2b19b9a5aa8d841ba094e0e6a79c78545d0eb173 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Mon, 10 Jun 2024 00:47:11 +1000 Subject: [PATCH] Fix cargo fmt Signed-off-by: Jiahao XU --- .../src/gh_api_client/release_artifacts.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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)]