You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Issue**
`cbook.is_sequence_of_strings` cannot tell of a pandas series
is contains strings. Pandas series are numpy arrays of type
`object`.
**Problem**
`cbook.is_sequence_of_strings` uses `cbook.is_string_like` to dismiss
strings as not sequences of strings. However, numpy string arrays
of `dtype=object` are string-like since they support string
concatenation.
**Solution**
Do not dismiss an `ndarray` if it appears string-like, go ahead and
peak inside.
0 commit comments