Skip to content

Commit 94f7a81

Browse files
committed
Fix syntax error in map.py.
1 parent 6253b07 commit 94f7a81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/util/map.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def auto_map(arr, f, otherargs, n_results=1, required='all'):
6262

6363
def mapwrap(f, n_results_default=1, required='all'):
6464
@wraps(f)
65-
def wrapped(arr, *otherargs, n_results=None):
65+
def wrapped(arr, n_results=None, *otherargs):
6666
n_results = n_results or n_results_default
6767
return auto_map(arr, f, otherargs, n_results, required)
6868

0 commit comments

Comments
 (0)