From a1c1a9442730c20364d3765f3d4de64c4fd8ce36 Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Tue, 14 Jul 2020 12:15:01 -0700 Subject: Remove redundant f-strings This fixes a new lint error (F541) introduced by flake8 3.8. --- bot/utils/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot/utils/decorators.py') diff --git a/bot/utils/decorators.py b/bot/utils/decorators.py index 519e61a9..9e6ef73d 100644 --- a/bot/utils/decorators.py +++ b/bot/utils/decorators.py @@ -285,7 +285,7 @@ def locked() -> t.Union[t.Callable, None]: embed = Embed() embed.colour = Colour.red() - log.debug(f"User tried to invoke a locked command.") + log.debug("User tried to invoke a locked command.") embed.description = ( "You're already using this command. Please wait until " "it is done before you use it again." -- cgit v1.2.3