Prefixed currently unused error variable with underscore

This commit is contained in:
Deirdre Connolly 2019-11-26 02:26:06 -05:00 committed by Deirdre Connolly
parent d78ead4a1a
commit 6168cb51d7
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ impl<E> From<E> for Response
where where
E: Error, E: Error,
{ {
fn from(e: E) -> Self { fn from(_e: E) -> Self {
Self::Error Self::Error
} }
} }