diff --git a/starlette_discord/models.py b/starlette_discord/models.py index c975b52..bf9f614 100644 --- a/starlette_discord/models.py +++ b/starlette_discord/models.py @@ -157,6 +157,7 @@ async def to_dpy(self, client): Returns ------- :class:`discord.User` + The discord.py User object, if it could be found. """ user = client.get_user(self.id) if not user: @@ -246,6 +247,7 @@ async def to_dpy(self, client): Returns ------- :class:`discord.Guild` + The discord.py Guild object, if the guild could be found. """ guild = client.get_guild(self.id) if not guild: