Skip to content

Commit 73d0ee0

Browse files
committed
Nit
1 parent 85bd7f2 commit 73d0ee0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/dtypes/cast.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ def maybe_promote(dtype, fill_value=np.nan):
595595
return dtype, fill_value
596596

597597

598-
def maybe_astype(values, dtype, copy, errors="raise"):
598+
def maybe_astype(values, dtype, copy, errors):
599599
try:
600600
result = np.array(values, dtype=dtype, copy=copy)
601601
except (ValueError, TypeError):

0 commit comments

Comments
 (0)