aboutsummaryrefslogtreecommitdiff
path: root/discord/utils.py
diff options
context:
space:
mode:
authorBeatButton <[email protected]>2018-09-09 09:19:50 -0600
committerRapptz <[email protected]>2018-09-14 22:55:27 -0400
commita4d1599ce92e39d93ff6ccb08ef4511d8b2543be (patch)
tree11af80b8e22dce5f37ed7f9cdd157d5213c8fd90 /discord/utils.py
parentBump aiohttp contraint to <3.5.0 (diff)
downloaddiscord.py-a4d1599ce92e39d93ff6ccb08ef4511d8b2543be.tar.xz
discord.py-a4d1599ce92e39d93ff6ccb08ef4511d8b2543be.zip
Change docstrings to raw-strings
Diffstat (limited to 'discord/utils.py')
-rw-r--r--discord/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/utils.py b/discord/utils.py
index b4a79d67..6bdfc36e 100644
--- a/discord/utils.py
+++ b/discord/utils.py
@@ -171,7 +171,7 @@ def find(predicate, seq):
return None
def get(iterable, **attrs):
- """A helper that returns the first element in the iterable that meets
+ r"""A helper that returns the first element in the iterable that meets
all the traits passed in ``attrs``. This is an alternative for
:func:`discord.utils.find`.