We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4bf8a07 + d3bbeaf commit e81e1daCopy full SHA for e81e1da
pandas/core/arrays/string_.py
@@ -639,7 +639,7 @@ def _from_sequence(
639
dtype = StringDtype(storage="python")
640
641
from pandas.core.arrays.masked import BaseMaskedArray
642
-
+
643
na_value = dtype.na_value
644
if isinstance(scalars, BaseMaskedArray):
645
# avoid costly conversion to object dtype
pandas/tests/arrays/test_string_array.py
@@ -1,3 +1,4 @@
1
import pandas as pd
2
-print(pd.array([list('test'), list('words')], dtype='string'))
3
-print(pd.array([list('test'), list('word')], dtype='string'))
+print(pd.array([list("test"), list("words")], dtype="string"))
4
+print(pd.array([list("test"), list("word")], dtype="string"))
0 commit comments