From 6044f2047782bec2a873295caff99a4d41b46f51 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Tue, 6 Jun 2023 17:49:01 -0400 Subject: [PATCH] Try fixing numpydoc lint --- python/pyarrow/_compute.pyx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/pyarrow/_compute.pyx b/python/pyarrow/_compute.pyx index 34497af000ffe..16bc2bf51c5ed 100644 --- a/python/pyarrow/_compute.pyx +++ b/python/pyarrow/_compute.pyx @@ -2754,7 +2754,8 @@ def register_scalar_function(func, function_name, function_doc, in_types, out_ty def register_aggregate_function(func, function_name, function_doc, in_types, out_type, func_registry=None): - """Register a user-defined non-decomposable aggregate function. + """ + Register a user-defined non-decomposable aggregate function. This API is EXPERIMENTAL. @@ -2831,7 +2832,8 @@ def register_aggregate_function(func, function_name, function_doc, in_types, out def register_tabular_function(func, function_name, function_doc, in_types, out_type, func_registry=None): - """Register a user-defined tabular function. + """ + Register a user-defined tabular function. This API is EXPERIMENTAL.