Skip to content

Commit 46ede92

Browse files
authored
FIX: _chk_pyarrow_available (#62298)
1 parent 20fc744 commit 46ede92

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/core/arrays/string_.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,10 @@ def __from_arrow__(
344344
if self.storage == "pyarrow":
345345
from pandas.core.arrays.string_arrow import (
346346
ArrowStringArray,
347-
_chk_pyarrow_available,
347+
_check_pyarrow_available,
348348
)
349349

350-
_chk_pyarrow_available()
350+
_check_pyarrow_available()
351351

352352
if not pa.types.is_large_string(array.type):
353353
array = pc.cast(array, pa.large_string())

scripts/validate_unwanted_patterns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"_fill_limit_area_1d",
5959
"_make_block",
6060
"_DatetimeTZBlock",
61-
"_chk_pyarrow_available",
61+
"_check_pyarrow_available",
6262
}
6363

6464

0 commit comments

Comments
 (0)