Skip to content

Commit 878c4f7

Browse files
committed
fix ci
1 parent 1916a4f commit 878c4f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/src/dataset.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1742,7 +1742,8 @@ pub fn get_write_params(options: &Bound<'_, PyDict>) -> PyResult<Option<WritePar
17421742
}
17431743
}
17441744
if let Some(keep_original_array) = writer_options.get("keep_original_array") {
1745-
file_writer_options.keep_original_array = match keep_original_array.parse::<bool>() {
1745+
file_writer_options.keep_original_array = match keep_original_array.parse::<bool>()
1746+
{
17461747
Ok(n) => Some(n),
17471748
Err(_e) => None,
17481749
}

0 commit comments

Comments
 (0)