File size: 170 Bytes
860f636
 
 
 
 
 
 
1
2
3
4
5
6
7
def prepare_patch(code):
    return code

def apply_patch(target_file, code):
    with open(target_file, "w", encoding="utf8") as f:
        f.write(code)
    return True