diff options
author | 2022-07-14 10:14:51 -0400 | |
---|---|---|
committer | 2022-07-14 10:14:51 -0400 | |
commit | 94ece2c6f0e44a39436a665e0dddb586ab5d603c (patch) | |
tree | cbcf00d69c73e1d87c10f04aa157cfdd32cd5fb9 /bot/exts/fun | |
parent | Updated 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.py | 2 |
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) |