Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ingestr/src/arrow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ def arrow_mmap(
with pa.memory_map(path, "rb") as mmap:
reader: ipc.RecordBatchFileReader = ipc.open_file(mmap)
table = reader.read_all()

Copy link

Copilot AI Nov 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trailing whitespace detected. Remove the extra spaces at the end of this line.

Suggested change

Copilot uses AI. Check for mistakes.
if len(table) == 0:
return []

last_value = None
end_value = None
Expand Down
Loading