Clippy cleanup

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2024-11-01 07:49:42 +11:00
parent 32067c0ed3
commit 86363327a3
4 changed files with 4 additions and 27 deletions

View File

@ -56,7 +56,7 @@ pub async fn start_game_downloads(
}
});
info!("Spawned download");
return Ok(())
Ok(())
}
pub fn start_game_download(
@ -92,5 +92,5 @@ pub async fn stop_specific_game_download(state: tauri::State<'_, Mutex<AppState>
info!("Stopping callback");
callback.store(true, Ordering::Release);
return Ok(())
Ok(())
}