Fix clippy: Remove unneeded return statement

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-12-27 15:43:08 +01:00
parent 40d5277c1c
commit 6bdc0fea5a
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ impl Mastodon {
}, },
Err(err) => { Err(err) => {
error!(path = as_debug!(path), error = as_debug!(err); "error reading file contents for multipart form"); error!(path = as_debug!(path), error = as_debug!(err); "error reading file contents for multipart form");
return Err(err.into()); Err(err.into())
}, },
} }
} }