Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
fix(clippy): new warnings in latest rustc
Browse files Browse the repository at this point in the history
  • Loading branch information
oetyng committed Mar 30, 2021
1 parent 378c1ab commit e111304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ pub(crate) fn decode<I: AsRef<str>, O: DeserializeOwned>(encoded: I) -> Result<O
base
)));
}
Ok(deserialise(&decoded).map_err(|e| Error::FailedToParse(e.to_string()))?)
deserialise(&decoded).map_err(|e| Error::FailedToParse(e.to_string()))
}

0 comments on commit e111304

Please sign in to comment.