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.
1 parent 85abecf commit bd91bb0Copy full SHA for bd91bb0
pandas/core/arrays/string_.py
@@ -319,6 +319,8 @@ class BaseStringArray(ExtensionArray):
319
Mixin class for StringArray, ArrowStringArray.
320
"""
321
322
+ dtype: StringDtype
323
+
324
@doc(ExtensionArray.tolist)
325
def tolist(self) -> list:
326
if self.ndim > 1:
@@ -353,7 +355,8 @@ def _str_map_str_or_object(
353
355
result = pa.array(
354
356
result, mask=mask, type=pa.large_string(), from_pandas=True
357
)
- return type(self)(result)
358
+ # error: Too many arguments for "BaseStringArray"
359
+ return type(self)(result) # type: ignore[call-arg]
360
361
else:
362
# This is when the result type is object. We reach this when
0 commit comments