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), };