Skip to content

Commit e287bd8

Browse files
committed
and another new call-site
1 parent ebd1063 commit e287bd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/array_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def array(data, # type: Sequence[object]
209209
return cls._from_sequence(data, dtype=dtype, copy=copy)
210210

211211
if dtype is None:
212-
inferred_dtype = lib.infer_dtype(data)
212+
inferred_dtype = lib.infer_dtype(data, skipna=False)
213213
if inferred_dtype == 'period':
214214
try:
215215
return period_array(data, copy=copy)

0 commit comments

Comments
 (0)