(input)
| 79 | return any(isinstance(input, list) for input in inputs) |
| 80 | |
| 81 | def _safe_len(input): |
| 82 | if isinstance(input, list): |
| 83 | return len(input) |
| 84 | else: |
| 85 | return 1 |
| 86 | |
| 87 | def _check_common_length(inputs): |
| 88 | """Check if all list representing multiple input sets have the same length and return it""" |
no outgoing calls
no test coverage detected