Skip to content

Commit eaefd47

Browse files
Fix up 'String dtype: fix convert_dtypes() to convert NaN-string to NA-string'
1 parent 98c5eb3 commit eaefd47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/blocks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ def convert(
663663
or isinstance(res_values, NumpyExtensionArray)
664664
and res_values._ndarray is values
665665
):
666-
res_values = values.copy()
666+
res_values = res_values.copy()
667667
elif res_values is values:
668668
refs = self.refs
669669

0 commit comments

Comments
 (0)