Skip to content

Commit 43706fb

Browse files
committed
Unbox NaT for numpy
1 parent 8bd020f commit 43706fb

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
@@ -183,7 +183,7 @@ def get_reindexed_values(self, empty_dtype, upcasted_na):
183183
is_datetime64tz_dtype(empty_dtype)):
184184
if self.block is None:
185185
array = empty_dtype.construct_array_type()
186-
return array(np.full(self.shape[1], fill_value),
186+
return array(np.full(self.shape[1], fill_value.value),
187187
dtype=empty_dtype)
188188
pass
189189
elif getattr(self.block, 'is_categorical', False):

0 commit comments

Comments
 (0)