aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHornwitser <[email protected]>2018-10-17 03:29:33 +0200
committerRapptz <[email protected]>2018-11-24 22:17:58 -0500
commitdf144b0959a74ef9a1be7473274db2203662b95c (patch)
tree1530e91108fc61446bf6adc5860eaaa88aaf7cf1
parent[lint] Fix import order (diff)
downloaddiscord.py-df144b0959a74ef9a1be7473274db2203662b95c.tar.xz
discord.py-df144b0959a74ef9a1be7473274db2203662b95c.zip
[lint] Changed missed docstrings to raw-string
Missed by a4d1599 despite being pointed out in #1570.
-rw-r--r--discord/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/client.py b/discord/client.py
index 012adc73..941f9369 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -65,7 +65,7 @@ def app_info_icon_url(self):
AppInfo.icon_url = property(app_info_icon_url)
class Client:
- """Represents a client connection that connects to Discord.
+ r"""Represents a client connection that connects to Discord.
This class is used to interact with the Discord WebSocket and API.
A number of options can be passed to the :class:`Client`.
@@ -287,7 +287,7 @@ class Client:
traceback.print_exc()
async def request_offline_members(self, *guilds):
- """|coro|
+ r"""|coro|
Requests previously offline members from the guild to be filled up
into the :attr:`Guild.members` cache. This function is usually not