This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 6de65cb221 MINOR: [Docs] Fix indentation error in Table.from_pylist 
docstring (#36481)
6de65cb221 is described below

commit 6de65cb2219b9b938d79203c84b208f30050b3a7
Author: Joris Van den Bossche <[email protected]>
AuthorDate: Wed Jul 5 22:49:18 2023 +0200

    MINOR: [Docs] Fix indentation error in Table.from_pylist docstring (#36481)
    
    Authored-by: Joris Van den Bossche <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 python/pyarrow/table.pxi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/pyarrow/table.pxi b/python/pyarrow/table.pxi
index 00067c5796..fd5ba263d2 100644
--- a/python/pyarrow/table.pxi
+++ b/python/pyarrow/table.pxi
@@ -1826,7 +1826,7 @@ cdef class _Tabular(_PandasConvertible):
         n_legs: [[2,4]]
         animals: [["Flamingo","Dog"]]
 
-       Construct a Table from a list of rows with metadata:
+        Construct a Table from a list of rows with metadata:
 
         >>> my_metadata={"n_legs": "Number of legs per animal"}
         >>> pa.Table.from_pylist(pylist, metadata=my_metadata).schema

Reply via email to