Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Nov 4, 2023
1 parent 0838263 commit c5d44ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/deltalake/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,10 @@ def validate_batch(batch: pa.RecordBatch) -> pa.RecordBatch:
if file_options is not None:
file_options.update(use_compliant_nested_type=False)
else:
file_options = pa.dataset.ParquetFileFormat().make_write_options(use_compliant_nested_type=False)
file_options = pa.dataset.ParquetFileFormat().make_write_options(
use_compliant_nested_type=False
)

ds.write_dataset(
data,
base_dir="/",
Expand Down

0 comments on commit c5d44ee

Please sign in to comment.