(inp)
| 146 | elif task_id in [580, 615, 791]: |
| 147 | |
| 148 | def turn_all_list_into_tuple(inp): |
| 149 | if isinstance(inp, list): |
| 150 | return tuple([turn_all_list_into_tuple(item) for item in inp]) |
| 151 | return inp |
| 152 | |
| 153 | modified_inputs = [turn_all_list_into_tuple(inp) for inp in inputs] |
| 154 |
no outgoing calls
no test coverage detected