From e3c77c3246f4ad961af7ee15c5c3c2181535353a Mon Sep 17 00:00:00 2001 From: Nick Hughes Date: Wed, 8 Nov 2023 21:25:30 -0800 Subject: [PATCH] Fix return arg in `_MetadataRecordBatchReader.read_chunk` docstring --- python/pyarrow/_flight.pyx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/python/pyarrow/_flight.pyx b/python/pyarrow/_flight.pyx index 79aa24e4ce8e3..8fe9465a13d9c 100644 --- a/python/pyarrow/_flight.pyx +++ b/python/pyarrow/_flight.pyx @@ -1014,11 +1014,8 @@ cdef class _MetadataRecordBatchReader(_Weakrefable, _ReadPandasMixin): Returns ------- - data : FlightStreamChunk + chunk : FlightStreamChunk The next FlightStreamChunk in the stream. - app_metadata : Buffer or None - Application-specific metadata for the batch as defined by - Flight. Raises ------