From f5fc09054835c6717b410f68ba9269faa4c8ea81 Mon Sep 17 00:00:00 2001 From: "Kevin R. Thornton" Date: Sun, 25 Sep 2022 16:31:48 -0700 Subject: [PATCH] style: Remove unneeded ( ) from match. --- src/table_collection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/table_collection.rs b/src/table_collection.rs index 591199837..6b6e1c556 100644 --- a/src/table_collection.rs +++ b/src/table_collection.rs @@ -192,7 +192,7 @@ impl TableCollection { pub fn new_from_file(filename: impl AsRef) -> Result { // Arbitrary sequence_length. let mut tables = match TableCollection::new(1.0) { - Ok(t) => (t), + Ok(t) => t, Err(e) => return Err(e), };