Commit 03a7f88d authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

chore: remove print statement

parent f61869d9
...@@ -247,8 +247,6 @@ class ChatTable: ...@@ -247,8 +247,6 @@ class ChatTable:
for chat in Chat.select().where(Chat.user_id == user_id) for chat in Chat.select().where(Chat.user_id == user_id)
] ]
print(shared_chat_ids)
query = Chat.delete().where(Chat.user_id << shared_chat_ids) query = Chat.delete().where(Chat.user_id << shared_chat_ids)
query.execute() # Remove the rows, return number of rows removed. query.execute() # Remove the rows, return number of rows removed.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment