Stop using async

master
josiah 4 years ago
parent 9739a1691c
commit 6ec3083b3a

@ -19,7 +19,7 @@ def parse_direct_mention(message_text):
return (matches.group(1), matches.group(2).strip()) if matches else (None, None)
async def zalgo_ify(text):
def zalgo_ify(text):
''' Takes some normal text and zalgo-ifies it '''
# "Combining Diacritical Marks" Unicode block.
combining_chars = [chr(n) for n in range(768, 878)]

Loading…
Cancel
Save