From b7683854eee7796cce105dc128abe930a53fd1a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Celderlabs=E2=80=9D?= Date: Tue, 16 Jul 2019 00:51:23 -0400 Subject: [PATCH] Fix activity documentation to match previous changes, remove guild_id from message model --- disco/client.py | 4 ++-- disco/types/message.py | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/disco/client.py b/disco/client.py index cbb45e5..4708951 100644 --- a/disco/client.py +++ b/disco/client.py @@ -115,7 +115,7 @@ class Client(LoggingClass): ------ status : `user.Status` The clients current status. - game : `user.Game` + game : `user.Activity` If passed, the game object to set for the users presence. afk : bool Whether the client is currently afk. @@ -123,7 +123,7 @@ class Client(LoggingClass): How long the client has been afk for (in seconds). """ if game and not isinstance(game, Activity): - raise TypeError('Game must be a Game model') + raise TypeError('Game must be an Activity model') if status is Status.IDLE and not since: since = int(time.time() * 1000) diff --git a/disco/types/message.py b/disco/types/message.py index ecfacdb..40c34b4 100644 --- a/disco/types/message.py +++ b/disco/types/message.py @@ -392,8 +392,6 @@ class Message(SlottedModel): The ID of this message. channel_id : snowflake The channel ID this message was sent in. - guild_id : snowflake - The server ID this message was sent in. author : :class:`disco.types.user.User` The author of this message. content : str @@ -431,7 +429,6 @@ class Message(SlottedModel): """ id = Field(snowflake) channel_id = Field(snowflake) - guild_id = Field(snowflake) author = Field(User) content = Field(text) timestamp = Field(datetime)