Skip to content

Commit ab2d26c

Browse files
committed
#46 Improve Readability of TableRead Impletation
1 parent 0992aa9 commit ab2d26c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pypaimon/py4j/java_implementation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def to_arrow(self, splits):
185185
record_batch_reader = self.to_arrow_batch_reader(splits)
186186
return pa.Table.from_batches(record_batch_reader, schema=self._arrow_schema)
187187

188-
def to_arrow_batch_reader(self, splits) -> pa.RecordBatchReader:
188+
def to_arrow_batch_reader(self, splits):
189189
j_splits = list(map(lambda s: s.to_j_split(), splits))
190190
self._j_bytes_reader.setSplits(j_splits)
191191
batch_iterator = self._batch_generator()

0 commit comments

Comments
 (0)