Skip to content

Commit 3078c87

Browse files
committed
linting
1 parent 73a4843 commit 3078c87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/arrow/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,7 @@ def _reduce(self, name: str, *, skipna: bool = True, **kwargs):
13751375
return result.as_py()
13761376

13771377
def _reduce_with_wrap(self, name: str, *, skipna: bool = True, kwargs):
1378-
"""Takes the result of `_reduce` and wraps it an a ndarray/extensionArray."""
1378+
"""Takes the result of ``_reduce`` and wraps it an a ndarray/extensionArray."""
13791379
result = self._reduce(name, skipna=skipna, **kwargs)
13801380
result = pa.array([result])
13811381
return type(self)(result)

0 commit comments

Comments
 (0)