Skip to content

Commit

Permalink
lint fix :(
Browse files Browse the repository at this point in the history
  • Loading branch information
sherlockbeard authored and ion-elgreco committed Aug 16, 2024
1 parent e502bdb commit 64c5250
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,8 @@ fn set_writer_properties(
properties = properties.set_max_row_group_size(row_group_size.parse::<usize>().unwrap());
}
if let Some(Some(statistics_truncate_length)) = statistics_truncate_length {
properties = properties.set_statistics_truncate_length(statistics_truncate_length.parse::<usize>().ok());
properties = properties
.set_statistics_truncate_length(statistics_truncate_length.parse::<usize>().ok());
}

if let Some(Some(compression)) = compression {
Expand Down

0 comments on commit 64c5250

Please sign in to comment.