From dc5f21562d2d8aa1957d558e245c7e841babc58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sun, 19 Apr 2020 13:43:22 +0200 Subject: [PATCH] index: Format the file. --- src/index.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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)?;