Skip to content

Commit 7cde3df

Browse files
authored
style: Remove unneeded ( ) from match. (#323)
1 parent ba01911 commit 7cde3df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/table_collection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl TableCollection {
192192
pub fn new_from_file(filename: impl AsRef<str>) -> Result<Self, TskitError> {
193193
// Arbitrary sequence_length.
194194
let mut tables = match TableCollection::new(1.0) {
195-
Ok(t) => (t),
195+
Ok(t) => t,
196196
Err(e) => return Err(e),
197197
};
198198

0 commit comments

Comments
 (0)