[Clean & Fix]

This commit is contained in:
Alex Emmet 2026-04-29 21:15:37 +02:00
commit 401d4890dc
7 changed files with 205 additions and 99 deletions

View file

@ -108,7 +108,7 @@ async fn download_asset(url: &str) -> Result<NamedTempFile> {
}
let tmp = NamedTempFile::new().context("failed to create temp file")?;
let mut out = File::create(tmp.path()).context("failed to open temp file")?;
let _out = File::create(tmp.path()).context("failed to open temp file")?;
let bytes = response
.bytes()