Total Complexity | 0 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | with open('.coverage') as f: |
||
2 | t = f.read() |
||
3 | s = t.replace( |
||
4 | 'C:\\\\Users\\\\drtho\\\\github\\\\novel_editor\\\\source\\\\', |
||
5 | "/home/scrutinizer/build/source/" |
||
6 | ) |
||
7 | |||
8 | with open('.coverage', mode='w') as f: |
||
9 | f.write(s) |
||
10 |