We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f032dd7 commit cebe5e7Copy full SHA for cebe5e7
pandas/core/strings/object_array.py
@@ -451,13 +451,13 @@ def _str_upper(self):
451
452
def _str_isalnum(self):
453
return self._str_map(str.isalnum, dtype="bool")
454
-
+
455
def _str_isalpha(self):
456
return self._str_map(str.isalpha, dtype="bool")
457
458
def _str_isascii(self):
459
return self._str_map(str.isascii, dtype="bool")
460
461
def _str_isdecimal(self):
462
return self._str_map(str.isdecimal, dtype="bool")
463
0 commit comments