From ce16d0df6c10121f761899daea07d3656c4e7537 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sat, 8 Jan 2022 22:27:48 +0000 Subject: Change single quote to double quote. This trivial change is actually to try and reproduce a bug we had with our GitHub actions. --- bot/monkey_patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot/monkey_patches.py') diff --git a/bot/monkey_patches.py b/bot/monkey_patches.py index 19965c19..36708415 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[0-9]{15,20})$') +MESSAGE_ID_RE = re.compile(r"(?P[0-9]{15,20})$") class Command(commands.Command): -- cgit v1.2.3 From 4f823346d56929964a092bd8119ec54f1458701e Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sat, 8 Jan 2022 22:44:28 +0000 Subject: Remove trailing whitespace Like the previous commit, this trivial change is actually to try and reproduce a bug we had with our GitHub actions. --- bot/monkey_patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot/monkey_patches.py') diff --git a/bot/monkey_patches.py b/bot/monkey_patches.py index 36708415..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[0-9]{15,20})$") +MESSAGE_ID_RE = re.compile(r"(?P[0-9]{15,20})$") class Command(commands.Command): -- cgit v1.2.3