Determine if the object is a callable or array of callables.
(pat: Any)
| 104 | |
| 105 | |
| 106 | def _contains_callable(pat: Any) -> bool: |
| 107 | """Determine if the object is a callable or array of callables.""" |
| 108 | return _contains_obj_type(pat=pat, checker=callable) |
| 109 | |
| 110 | |
| 111 | def _apply_str_ufunc( |
no test coverage detected
searching dependent graphs…