From 514d8fc07e7b4a4cd138505823c7ff04cb9c1042 Mon Sep 17 00:00:00 2001 From: Jordan Murphy <35613487+jordan-d-murphy@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:48:42 -0700 Subject: [PATCH] remove Axis parameters from docstring --- pandas/core/groupby/generic.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pandas/core/groupby/generic.py b/pandas/core/groupby/generic.py index 4d12d6a5829f3..034b9f1096f90 100644 --- a/pandas/core/groupby/generic.py +++ b/pandas/core/groupby/generic.py @@ -1051,8 +1051,6 @@ def idxmin(self, skipna: bool = True) -> Series: Parameters ---------- - axis : {0 or 'index'} - Unused. Parameter needed for compatibility with DataFrame. skipna : bool, default True Exclude NA/null values. If the entire Series is NA, the result will be NA. @@ -1109,8 +1107,6 @@ def idxmax(self, skipna: bool = True) -> Series: Parameters ---------- - axis : {0 or 'index'} - Unused. Parameter needed for compatibility with DataFrame. skipna : bool, default True Exclude NA/null values. If the entire Series is NA, the result will be NA.