rust/hg-cpython/src/utils.rs
changeset 44973 26114bd6ec60
parent 44505 d738b7a18438
child 49631 c7fb9b74e753
--- a/rust/hg-cpython/src/utils.rs	Mon Jun 15 15:14:16 2020 -0400
+++ b/rust/hg-cpython/src/utils.rs	Mon Jun 15 18:26:40 2020 +0200
@@ -32,10 +32,7 @@
 
 /// Clone incoming Python bytes given as `PyBytes` as a `Node`,
 /// doing the necessary checks.
-pub fn node_from_py_bytes<'a>(
-    py: Python,
-    bytes: &'a PyBytes,
-) -> PyResult<Node> {
+pub fn node_from_py_bytes(py: Python, bytes: &PyBytes) -> PyResult<Node> {
     <NodeData>::try_from(bytes.data(py))
         .map_err(|_| {
             PyErr::new::<ValueError, _>(
@@ -43,5 +40,5 @@
                 format!("{}-byte hash required", NODE_BYTES_LENGTH),
             )
         })
-        .map(|n| n.into())
+        .map(Into::into)
 }