Skip to content

Commit

Permalink
Update pyarrow documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgKreuzmayr committed Nov 7, 2024
1 parent df24a82 commit 3a37e7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pyarrow/_parquet.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -467,15 +467,15 @@ cdef class ColumnChunkMetaData(_Weakrefable):

@property
def dictionary_page_offset(self):
"""Offset of dictionary page relative to column chunk offset (int)."""
"""Offset of dictionary page relative to beginning of the file (int)."""
if self.has_dictionary_page:
return self.metadata.dictionary_page_offset()
else:
return None

@property
def data_page_offset(self):
"""Offset of data page relative to column chunk offset (int)."""
"""Offset of data page relative to beginning of the file (int)."""
return self.metadata.data_page_offset()

@property
Expand Down

0 comments on commit 3a37e7d

Please sign in to comment.