From 86c6501305cb21702b5f7ecc3b9243433a00ca83 Mon Sep 17 00:00:00 2001 From: hyperbel Date: Mon, 23 Oct 2023 16:46:42 +0000 Subject: [PATCH] sync --- party/chat.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/party/chat.py b/party/chat.py index f6f263f..5161f3c 100644 --- a/party/chat.py +++ b/party/chat.py @@ -24,8 +24,6 @@ class Chat: def insertMessage(self, content: str, author: str, timestamp: str): if not (self.initialized): self.init() message = self.convertToMessage(content, author, timestamp) - print(message) - print(self.collection) self.collection.insert_one(message) print('inserted message') @@ -35,7 +33,6 @@ class Chat: .skip(skip) .limit(count) .sort('timestamp', 1)) - print(messages) return messages