2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-12-22 03:11:24 +00:00

Remove unnecessary returns

This commit is contained in:
asonix 2024-12-09 20:53:59 -06:00
parent ef60ed9581
commit 4433257f2b

View file

@ -56,10 +56,10 @@ where
tokio::select! { tokio::select! {
_ = self.make_progress() => { _ = self.make_progress() => {
return f.await; f.await
} }
output = &mut f => { output = &mut f => {
return output; output
} }
} }
} }