Fix clippy warning after cherry-picking fix into 0.125.x

Thorsten Ball created

Change summary

crates/util/src/github.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/util/src/github.rs 🔗

@@ -111,7 +111,7 @@ pub async fn github_release_with_tag(
                 "GitHub API response text: {:?}",
                 String::from_utf8_lossy(body.as_slice())
             );
-            return Err(anyhow!("error deserializing latest release"));
+            Err(anyhow!("error deserializing latest release"))
         }
     }
 }