From 4433257f2b540b2c30b5805b24407b0f146adb0c Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 9 Dec 2024 20:53:59 -0600 Subject: [PATCH] Remove unnecessary returns --- src/stream.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stream.rs b/src/stream.rs index 52aba63..c26c103 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -56,10 +56,10 @@ where tokio::select! { _ = self.make_progress() => { - return f.await; + f.await } output = &mut f => { - return output; + output } } }