Return a list from a list of lists :param list[list[Value]] list_of_lists: :rtype: list[Value]
(list_of_lists)
| 53 | |
| 54 | |
| 55 | def flatten(list_of_lists): |
| 56 | """ |
| 57 | Return a list from a list of lists |
| 58 | :param list[list[Value]] list_of_lists: |
| 59 | :rtype: list[Value] |
| 60 | """ |
| 61 | return [el for sublist in list_of_lists for el in sublist] |
| 62 | |
| 63 | |
| 64 | def _resolve_str_variable(variable, file_groups): |
no outgoing calls
no test coverage detected