Skip to content

Commit 87cc9dc

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e460550 commit 87cc9dc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pandas/core/accessor.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
)
1414
import warnings
1515

16-
from pandas.util._decorators import doc, Appender
16+
from pandas.util._decorators import (
17+
Appender,
18+
doc,
19+
)
1720
from pandas.util._exceptions import find_stack_level
1821

1922

@@ -340,7 +343,7 @@ def __init__(self, pandas_obj):
340343
self._obj = pandas_obj
341344
342345
def sum(self):
343-
return self._obj.sum()
346+
return self._obj.sum()
344347
345348
346349
Back in an interactive IPython session:
@@ -400,6 +403,7 @@ def even(self):
400403
[2,8]
401404
"""
402405

406+
403407
@Appender(_index_doc)
404408
@doc(_register_accessor, klass="Index")
405409
def register_index_accessor(name: str):

0 commit comments

Comments
 (0)