File size: 220 Bytes
60470bc
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import os

with open('README.md', 'r', encoding='utf-8-sig') as f:
    content = f.read()

with open('README.md', 'w', encoding='utf-8', newline='\n') as f:
    f.write(content)

print("README.md rewritten without BOM")