Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
style: fix clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed May 8, 2021
1 parent 2facbff commit 9686b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,6 @@ fn main() -> Result<(), ParquetError> {

match writer.close() {
Ok(_) => Ok(()),
Err(error) => return Err(error.into()),
Err(error) => Err(error),
}
}

0 comments on commit 9686b1f

Please sign in to comment.