Skip to content

Commit 1a6a26b

Browse files
Abby VeCaseyAbby VeCasey
Abby VeCasey
authored and
Abby VeCasey
committed
ascii3
1 parent 4ecf88d commit 1a6a26b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/core/arrays/_arrow_string_mixins.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,11 @@ def _str_isascii(self):
284284
def _str_isascii(self):
285285
# Handle the case where self might be a pandas StringArray or similar
286286
# Check if each value is not NA, and is a string of length 1 (single character)
287+
def isna(value):
288+
return value is None
289+
287290
def check_ascii(value):
288-
if pd.isna(value):
291+
if isna(value):
289292
return False # Or return True depending on how you want to handle NA values
290293
if len(value) != 1:
291294
raise ValueError(f"Expected a string of length 1, got: {value}")

0 commit comments

Comments
 (0)