aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun
diff options
context:
space:
mode:
authorGravatar ionite34 <[email protected]>2022-07-14 10:14:51 -0400
committerGravatar ionite34 <[email protected]>2022-07-14 10:14:51 -0400
commit94ece2c6f0e44a39436a665e0dddb586ab5d603c (patch)
treecbcf00d69c73e1d87c10f04aa157cfdd32cd5fb9 /bot/exts/fun
parentUpdated docstrings (diff)
Normalized REGEX_EMOJI naming
Updated pattern to follow similar naming convention of `REGEX_*` instead of `RE_*` as rest of file.
Diffstat (limited to 'bot/exts/fun')
-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 c045a62e..9c6c5020 100644
--- a/bot/exts/fun/uwu.py
+++ b/bot/exts/fun/uwu.py
@@ -57,7 +57,7 @@ SUBSTITUTE_STUTTER = r"\g<1>\g<2>-\g<2>"
REGEX_NYA = re.compile(r"n([aeou][^aeiou])")
SUBSTITUTE_NYA = r"ny\1"
-RE_EMOJI = re.compile(r"<(a?)?:(\w+):(\d{18})>?")
+REGEX_EMOJI = re.compile(r"<(a?)?:(\w+):(\d{18})>?")
@dataclass(frozen=True, eq=True)