From f31900a969872621ccde7030918e409fd1be61d6 Mon Sep 17 00:00:00 2001 From: Siddharth kumar Date: Fri, 16 Aug 2024 22:32:48 +0530 Subject: [PATCH] lint fix :( --- python/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/src/lib.rs b/python/src/lib.rs index 9b32a465fd..2d376917e0 100644 --- a/python/src/lib.rs +++ b/python/src/lib.rs @@ -1382,7 +1382,8 @@ fn set_writer_properties( properties = properties.set_max_row_group_size(row_group_size.parse::().unwrap()); } if let Some(Some(statistics_truncate_length)) = statistics_truncate_length { - properties = properties.set_statistics_truncate_length(statistics_truncate_length.parse::().ok()); + properties = properties + .set_statistics_truncate_length(statistics_truncate_length.parse::().ok()); } if let Some(Some(compression)) = compression {