diff options
Diffstat (limited to 'discord/shard.py')
| -rw-r--r-- | discord/shard.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/shard.py b/discord/shard.py index 62639bab..3bf3788b 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -192,7 +192,7 @@ class AutoShardedClient(Client): Parameters ----------- - \*guilds + \*guilds: :class:`Guild` An argument list of guilds to request offline members for. Raises @@ -313,11 +313,11 @@ class AutoShardedClient(Client): status: Optional[:class:`Status`] Indicates what status to change to. If None, then :attr:`Status.online` is used. - afk: bool + afk: :class:`bool` Indicates if you are going AFK. This allows the discord client to know how to handle push notifications better for you in case you are actually idle and not lying. - shard_id: Optional[int] + shard_id: Optional[:class:`int`] The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see. |