(lines, path)
| 76 | write_mapping_file(m, path) |
| 77 | |
| 78 | def write_file(lines, path): |
| 79 | print('Writing:', path) |
| 80 | with open(path, 'w') as f: |
| 81 | for l in lines: |
| 82 | f.write(l+'\n') |
| 83 | |
| 84 | def write_mapping_file(m, path): |
| 85 | path = path+'.map' |
no test coverage detected