aboutsummaryrefslogtreecommitdiffstats
path: root/bot/monkey_patches.py
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2022-01-16 14:21:55 +0000
committerGravatar GitHub <[email protected]>2022-01-16 14:21:55 +0000
commit8b49afdda0993b65a904e52df76bb2ce021bffb7 (patch)
treeb8e3706e98775009545513e9b01d5884be3731bf /bot/monkey_patches.py
parenthandle OverflowError in relative times converter (diff)
parentchore(deps): bump pillow from 8.4.0 to 9.0.0 (diff)
Merge branch 'main' into main
Diffstat (limited to 'bot/monkey_patches.py')
-rw-r--r--bot/monkey_patches.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/monkey_patches.py b/bot/monkey_patches.py
index 19965c19..925d3206 100644
--- a/bot/monkey_patches.py
+++ b/bot/monkey_patches.py
@@ -6,7 +6,7 @@ from discord import Forbidden, http
from discord.ext import commands
log = logging.getLogger(__name__)
-MESSAGE_ID_RE = re.compile(r'(?P<message_id>[0-9]{15,20})$')
+MESSAGE_ID_RE = re.compile(r"(?P<message_id>[0-9]{15,20})$")
class Command(commands.Command):