Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Swallow numpy kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
xhochy committed Jun 23, 2020
1 parent 92e9974 commit 886ca31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fletcher/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def all(self, skipna: bool = False) -> Optional[bool]:
else:
raise TypeError("Can only execute all on boolean arrays")

def any(self, skipna: bool = False) -> Optional[bool]:
def any(self, skipna: bool = False, **kwargs) -> Optional[bool]:
"""Compute whether any boolean value is True."""
if pa.types.is_boolean(self.data.type):
return any_op(self.data, skipna=skipna)
Expand Down

0 comments on commit 886ca31

Please sign in to comment.