diff --git a/src/index.rs b/src/index.rs index 551e646..704b2b4 100644 --- a/src/index.rs +++ b/src/index.rs @@ -164,11 +164,7 @@ impl Index { #[new] #[args(reuse = true)] - fn new( - schema: &Schema, - path: Option<&str>, - reuse: bool, - ) -> PyResult { + fn new(schema: &Schema, path: Option<&str>, reuse: bool) -> PyResult { let index = match path { Some(p) => { let directory = MmapDirectory::open(p).map_err(to_pyerr)?;