diff -r 5e0505d36aee -r 451d22174b5f rust/hg-cpython/src/revlog.rs --- a/rust/hg-cpython/src/revlog.rs Wed Jan 08 14:37:01 2020 -0500 +++ b/rust/hg-cpython/src/revlog.rs Wed Jan 08 14:37:54 2020 -0500 @@ -7,14 +7,17 @@ use crate::cindex; use cpython::{ - ObjectProtocol, PyClone, PyDict, PyModule, PyObject, PyResult, PyTuple, Python, PythonObject, - ToPyObject, + ObjectProtocol, PyClone, PyDict, PyModule, PyObject, PyResult, PyTuple, + Python, PythonObject, ToPyObject, }; use hg::Revision; use std::cell::RefCell; /// Return a Struct implementing the Graph trait -pub(crate) fn pyindex_to_graph(py: Python, index: PyObject) -> PyResult { +pub(crate) fn pyindex_to_graph( + py: Python, + index: PyObject, +) -> PyResult { match index.extract::(py) { Ok(midx) => Ok(midx.clone_cindex(py)), Err(_) => cindex::Index::new(py, index),