(xs)
| 199 | ValueError: if there is a type error. |
| 200 | """ |
| 201 | def _convert_to_list(xs): |
| 202 | if not isinstance(xs, (list, tuple)): |
| 203 | return [xs] |
| 204 | else: |
| 205 | return list(xs) |
| 206 | |
| 207 | def cond(i, *args): |
| 208 | del args |
no outgoing calls
no test coverage detected