(summary_ids: List[List])
| 444 | |
| 445 | |
| 446 | def flatten_list(summary_ids: List[List]): |
| 447 | return [x for x in itertools.chain.from_iterable(summary_ids)] |
| 448 | |
| 449 | |
| 450 | def save_git_info(folder_path: str) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected