(value)
| 330 | |
| 331 | |
| 332 | def _is_list_of_strings(value) -> bool: |
| 333 | arr = np.asarray(value) |
| 334 | return arr.dtype.kind in ["U", "S"] and arr.size > 1 |
| 335 | |
| 336 | |
| 337 | def _build_and_get_enum( |
no outgoing calls
no test coverage detected
searching dependent graphs…