Skip to content

Commit 44406a6

Browse files
remove unnecessary use of Appender (#37703)
Co-authored-by: David Mrva <[email protected]>
1 parent 50b34a4 commit 44406a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10861,6 +10861,7 @@ def all(self, axis=0, bool_only=None, skipna=True, level=None, **kwargs):
1086110861
cls.all = all # type: ignore[assignment]
1086210862

1086310863
@doc(
10864+
NDFrame.mad,
1086410865
desc="Return the mean absolute deviation of the values "
1086510866
"over the requested axis.",
1086610867
name1=name1,
@@ -10869,7 +10870,6 @@ def all(self, axis=0, bool_only=None, skipna=True, level=None, **kwargs):
1086910870
see_also="",
1087010871
examples="",
1087110872
)
10872-
@Appender(NDFrame.mad.__doc__)
1087310873
def mad(self, axis=None, skipna=None, level=None):
1087410874
return NDFrame.mad(self, axis, skipna, level)
1087510875

0 commit comments

Comments
 (0)