Skip to content

Commit 48d9cfb

Browse files
committed
update format
1 parent 499f230 commit 48d9cfb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

python/pyarrow/_parquet.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2189,7 +2189,7 @@ cdef class ParquetWriter(_Weakrefable):
21892189
with nogil:
21902190
check_status(self.writer.get()
21912191
.WriteTable(deref(ctable), c_row_group_size))
2192-
2192+
21932193
def add_key_value_metadata(self, key_value_metadata):
21942194
cdef:
21952195
shared_ptr[const CKeyValueMetadata] c_metadata

python/pyarrow/tests/parquet/test_basic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -932,6 +932,7 @@ def test_deprecated_use_legacy_dataset(tempdir):
932932
with pytest.warns(FutureWarning, match=msg):
933933
pq.ParquetDataset(path, use_legacy_dataset=False)
934934

935+
935936
def test_append_key_value_metadata(tempdir):
936937
table = pa.Table.from_arrays([pa.array([], type='int32')], ['f0'])
937938
path = tempdir / 'metadata.parquet'

0 commit comments

Comments
 (0)