Passed
Push — master ( 54b96c...9d22e7 )
by Yoshihiro
04:39
created

coverage   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 8
dl 0
loc 10
rs 10
c 0
b 0
f 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