diff options
| author | Karthikeyan Singaravelan <[email protected]> | 2020-01-26 00:58:02 +0530 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-01-25 21:46:33 -0500 |
| commit | 1b4cac92fc53260a272d8a005fba5b0d883c2dd2 (patch) | |
| tree | a1fedcb20a7c253a5908fdc0454f9fa34c669467 | |
| parent | Add Python 3.8 classifier to setup.py (diff) | |
| download | discord.py-1b4cac92fc53260a272d8a005fba5b0d883c2dd2.tar.xz discord.py-1b4cac92fc53260a272d8a005fba5b0d883c2dd2.zip | |
Fix warnings regarding invalid escape sequences.
| -rw-r--r-- | discord/ext/commands/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |