Skip to content

Commit 861d2f2

Browse files
committed
REF: numpy.any and all accept an "axis" argument
1 parent b835ca2 commit 861d2f2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/compat/numpy/function.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ def validate_cum_func_with_skipna(skipna, args, kwargs, name):
212212
ALLANY_DEFAULTS["dtype"] = None
213213
ALLANY_DEFAULTS["out"] = None
214214
ALLANY_DEFAULTS["keepdims"] = False
215+
ALLANY_DEFAULTS["axis"] = None
215216
validate_all = CompatValidator(
216217
ALLANY_DEFAULTS, fname="all", method="both", max_fname_arg_count=1
217218
)

0 commit comments

Comments
 (0)