Skip to content

Commit 79f34bf

Browse files
committed
Fix pd.NA output pandas-dev#55630
1 parent 984d755 commit 79f34bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/concat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ def _dtype_to_na_value(dtype: DtypeObj, has_none_blocks: bool):
519519
return None
520520
return np.nan
521521
elif dtype.kind == "O":
522-
return np.nan
522+
return None
523523
raise NotImplementedError
524524

525525

0 commit comments

Comments
 (0)