From 6ec3083b3aaca27fb4fde9efb79cddae61c9bf8b Mon Sep 17 00:00:00 2001 From: josiah Date: Sat, 25 Jan 2020 03:42:53 +0000 Subject: [PATCH] Stop using async --- mojo-rtm/mojo-rtm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mojo-rtm/mojo-rtm.py b/mojo-rtm/mojo-rtm.py index f04469b..7f0dd7a 100644 --- a/mojo-rtm/mojo-rtm.py +++ b/mojo-rtm/mojo-rtm.py @@ -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)]