(lines, mappings, filepaths)
| 71 | return paths |
| 72 | |
| 73 | def write_files(lines, mappings, filepaths): |
| 74 | for l, m, path in zip(lines, mappings, filepaths): |
| 75 | write_file(l, path) |
| 76 | write_mapping_file(m, path) |
| 77 | |
| 78 | def write_file(lines, path): |
| 79 | print('Writing:', path) |
no test coverage detected