From ec8d0fece1735406961c431a14f0cb8cc4b00f75 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Thu, 22 Jul 2021 08:27:56 -0600 Subject: [PATCH] Fix star object --- jarvis/db/types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jarvis/db/types.py b/jarvis/db/types.py index 65feb4c..c50115a 100644 --- a/jarvis/db/types.py +++ b/jarvis/db/types.py @@ -460,7 +460,7 @@ class Star(MongoObject): :param _id: MongoDB ID :param index: Starboard star index :param message: Star Message ID - :param channel: Starboard Channel ID + :param starboard: Starboard Channel ID :param guild: Starboard Guild ID :param admin: ID of admin who created star :param created_at: Time created @@ -468,7 +468,7 @@ class Star(MongoObject): index: int message: int - channel: int + starboard: int guild: int admin: int created_at: datetime = field(default_factory=datetime.utcnow)