Skip to content

Commit 0488502

Browse files
Fix bug
1 parent ba424a8 commit 0488502

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
@@ -1481,7 +1481,7 @@ def map(self, mapper, skipna: bool = False):
14811481
if is_numeric_dtype(self.dtype):
14821482
return map_array(self.to_numpy(), mapper, skipna=skipna)
14831483
else:
1484-
return super().map(mapper, skipna)
1484+
return super().map(mapper, skipna=skipna)
14851485

14861486
@doc(ExtensionArray.duplicated)
14871487
def duplicated(

0 commit comments

Comments
 (0)