Forgot special characters are also lists

pull/10/head
Stijn De Clercq 2020-12-17 01:30:12 +01:00
parent 9d3f71eb1f
commit 0d75340d64
1 changed files with 3 additions and 1 deletions

View File

@ -277,7 +277,8 @@ def getAllVariants(char: str):
# Special Character
elif char in getSpecialCharacters():
variants.append(getSpecialCharacters()[char])
for letter in getSpecialCharacters()[char]:
variants.append(letter)
# Get all doubles
if char in getDoubles():
@ -288,6 +289,7 @@ def getAllVariants(char: str):
# Use a list here to keep the order!
uniques = []
print(variants)
for var in variants:
rep = ":" + var + ":"
if rep not in uniques: