Skip to content

Commit 910ed9b

Browse files
committed
wip
1 parent 7b528c9 commit 910ed9b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/dtypes/missing.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,8 @@ def infer_fill_value(val):
643643
return np.array("NaT", dtype=TD64NS_DTYPE)
644644
return np.array(np.nan, dtype=object)
645645
elif val.dtype.kind == "U":
646-
return np.array(np.nan, dtype=val.dtype)
646+
return np.array(np.nan, dtype=object)
647+
# return np.array(np.nan, dtype=val.dtype)
647648
return np.nan
648649

649650

0 commit comments

Comments
 (0)