From 1b4cac92fc53260a272d8a005fba5b0d883c2dd2 Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Sun, 26 Jan 2020 00:58:02 +0530 Subject: [PATCH] Fix warnings regarding invalid escape sequences. --- discord/ext/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 9816ce50..ddcdfa26 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -1424,7 +1424,7 @@ def check(predicate): return decorator def check_any(*checks): - """A :func:`check` that is added that checks if any of the checks passed + r"""A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR. If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure.