aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Bradley Reynolds <[email protected]>2022-02-23 12:25:07 -0600
committerGravatar Bradley Reynolds <[email protected]>2022-02-23 12:25:07 -0600
commite19bd7431a0bcc1a7dfe2281cafe95f750fd21df (patch)
tree2c2f3a88f03f0b9f281bcd11d5b377666f13ed03 /bot
parentRemove unused import (diff)
Compile all regex(s)
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/fun/uwu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py
index 474082be..a2622794 100644
--- a/bot/exts/fun/uwu.py
+++ b/bot/exts/fun/uwu.py
@@ -51,7 +51,7 @@ REGEX_STUTTER = re.compile(r"(\s)([a-zA-Z])")
SUBSTITUTE_STUTTER = r"\g<1>\g<2>-\g<2>"
REGEX_NYA = re.compile(r"n([aeou])([^aeiou])")
-SUBSTITUTE_NYA = r"ny\g<1>\g<2>"
+SUBSTITUTE_NYA = re.compile(r"ny\g<1>\g<2>")
class Uwu(Cog):