Updated the keys and nonkeys while statement to actually work. Previous commit had the wrong file....

This commit is contained in:
Normanras
2023-12-20 17:17:24 -05:00
parent 4790def449
commit c90125944a

View File

@ -40,8 +40,8 @@ async def gather_key():
key = random.choice(KEYS) + random.choice(SIGN)
while key in NONKEYS:
key = random.choice(KEYS) + random.choice(SIGN)
else:
return key
return key
async def gather_theme():