mirror of
https://git.asonix.dog/asonix/pict-rs.git
synced 2025-01-04 00:28:43 +00:00
Remove unnecessary returns
This commit is contained in:
parent
ef60ed9581
commit
4433257f2b
1 changed files with 2 additions and 2 deletions
|
@ -56,10 +56,10 @@ where
|
|||
|
||||
tokio::select! {
|
||||
_ = self.make_progress() => {
|
||||
return f.await;
|
||||
f.await
|
||||
}
|
||||
output = &mut f => {
|
||||
return output;
|
||||
output
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue