Now, it werkz, har har

This commit is contained in:
Justine Pelletreau 2022-03-02 16:29:20 +01:00
parent 1f01318ff0
commit 97fa8339e9

View File

@ -26,7 +26,7 @@ def spaceify(filepath):
with open(filepath, "r") as myfile:
myfile = myfile.read()
myfile.replace("\t", " ")
myfile = myfile.replace("\t", " ")
with open(filepath, "w") as yourfile:
yourfile.write(myfile)