From ba7e83da18ac8bfc4f0a521855c0b2ad05ccbbd4 Mon Sep 17 00:00:00 2001 From: FuzzyParrabellum <58094668+FuzzyParrabellum@users.noreply.github.com> Date: Wed, 2 Oct 2024 21:38:49 +0200 Subject: [PATCH] DOC: Fix docstring of pandas.Series.compare list indent formatting (#59911) Co-authored-by: rdzantoine.pro@gmail.com Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> --- pandas/core/shared_docs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/shared_docs.py b/pandas/core/shared_docs.py index cb0c3d241534c..81fa508ae6d23 100644 --- a/pandas/core/shared_docs.py +++ b/pandas/core/shared_docs.py @@ -65,9 +65,9 @@ Determine which axis to align the comparison on. * 0, or 'index' : Resulting differences are stacked vertically - with rows drawn alternately from self and other. + with rows drawn alternately from self and other. * 1, or 'columns' : Resulting differences are aligned horizontally - with columns drawn alternately from self and other. + with columns drawn alternately from self and other. keep_shape : bool, default False If true, all rows and columns are kept.