From 96566d1df19b054e11ff4608ad98dfeb8f30151d Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Fri, 18 Oct 2024 12:56:30 +0200 Subject: [PATCH] Re-enable clippy lint It was disabled by #726 due to a false positive tracked and fixed by https://github.com/rust-lang/rust-clippy/issues/13458. --- rust/cli/src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/rust/cli/src/main.rs b/rust/cli/src/main.rs index 430559f0..1916abe3 100644 --- a/rust/cli/src/main.rs +++ b/rust/cli/src/main.rs @@ -153,8 +153,6 @@ struct Experimental { parallel_execution: Option, } -// TODO(https://github.com/rust-lang/rust-clippy/issues/13458): Remove when fixed. -#[allow(clippy::needless_return)] #[tokio::main] async fn main() -> Result<()> { let flags = Arc::new(Flags::parse());