Parcourir la source

chore: remove print statement

Timothy J. Baek il y a 1 an
Parent
commit
cd60dbe08c
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. 0 2
      backend/apps/web/models/chats.py

+ 0 - 2
backend/apps/web/models/chats.py

@@ -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.