mirror of
https://github.com/stijndcl/didier.git
synced 2026-04-07 15:48:29 +02:00
Forgot special characters are also lists
This commit is contained in:
parent
9d3f71eb1f
commit
0d75340d64
1 changed files with 3 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue