1 Commits

Author SHA1 Message Date
Michael Hansen d310989555 Fix dictionary with multiple pronunciations 2020-01-07 19:40:59 -05:00
+1 -1
View File
@@ -91,7 +91,7 @@ def make_dict(
if (i < 1) or no_number:
print(word, pronounce, file=dictionary_file)
else:
print(f"{word, i + 1}({pronounce})", file=dictionary_file)
print(f"{word}({i + 1})", pronounce, file=dictionary_file)
words_in_dict.add(word)