diff options
Diffstat (limited to 'discord/user.py')
| -rw-r--r-- | discord/user.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/user.py b/discord/user.py index fa4c0719..3fa5090d 100644 --- a/discord/user.py +++ b/discord/user.py @@ -305,12 +305,12 @@ class ClientUser(BaseUser): @property def friends(self): - """Returns a :class:`list` of :class:`User`\s that the user is friends with.""" + r"""Returns a :class:`list` of :class:`User`\s that the user is friends with.""" return [r.user for r in self._relationships.values() if r.type is RelationshipType.friend] @property def blocked(self): - """Returns a :class:`list` of :class:`User`\s that the user has blocked.""" + r"""Returns a :class:`list` of :class:`User`\s that the user has blocked.""" return [r.user for r in self._relationships.values() if r.type is RelationshipType.blocked] async def edit(self, **fields): @@ -414,7 +414,7 @@ class ClientUser(BaseUser): self.__init__(state=self._state, data=data) async def create_group(self, *recipients): - """|coro| + r"""|coro| Creates a group direct message with the recipients provided. These recipients must be have a relationship |