From f3aa90e2d7d8352385b57993b99e3b3997b08c1c Mon Sep 17 00:00:00 2001 From: Sara Bonati Date: Thu, 24 Aug 2023 18:09:51 +0000 Subject: [PATCH] fix indentation in docstring --- pandas/core/indexing.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index a2871f364f092..97578e3f1668b 100644 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -604,12 +604,12 @@ def at(self) -> _AtIndexer: Raises ------ KeyError - * If getting a value and 'label' does not exist in a DataFrame or - Series. + If getting a value and 'label' does not exist in a DataFrame or Series. + ValueError - * If row/column label pair is not a tuple or if any label from - the pair is not a scalar for DataFrame. - * If label is list-like (*excluding* NamedTuple) for Series. + If row/column label pair is not a tuple or if any label + from the pair is not a scalar for DataFrame. + If label is list-like (*excluding* NamedTuple) for Series. See Also --------