Remove useless python script

This commit is contained in:
Shadow15510 2021-05-28 22:30:40 +02:00
parent 89c606d910
commit e8fb7c7107
1 changed files with 0 additions and 8 deletions

View File

@ -1,8 +0,0 @@
for file_name in ("abilities.txt", "symptoms.txt", "transmissions.txt"):
file = open(file_name, "r")
content = file.read().replace(" ", "")
file.close()
file = open(file_name, "w")
file.write(content)
file.close()