First stable version #2

Merged
Shadow merged 26 commits from dev into master 2021-06-02 22:13:40 +02:00
1 changed files with 0 additions and 8 deletions
Showing only changes of commit e8fb7c7107 - Show all commits

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()