From df144b0959a74ef9a1be7473274db2203662b95c Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Wed, 17 Oct 2018 03:29:33 +0200 Subject: [PATCH] [lint] Changed missed docstrings to raw-string Missed by a4d1599 despite being pointed out in #1570. --- discord/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/client.py b/discord/client.py index 012adc734..941f9369c 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