From 0732c1bbecb0860a867330d0d748a511745b6b37 Mon Sep 17 00:00:00 2001 From: Cyberes Date: Sat, 18 Mar 2023 15:05:21 -0600 Subject: [PATCH] remove print --- matrix_gpt/bot/chat_functions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/matrix_gpt/bot/chat_functions.py b/matrix_gpt/bot/chat_functions.py index 0d868bd..2c8d85f 100644 --- a/matrix_gpt/bot/chat_functions.py +++ b/matrix_gpt/bot/chat_functions.py @@ -245,7 +245,6 @@ def check_authorized(string, to_check): elif isinstance(to_check, list): output = False for item in to_check: - print(string, item, check_str(string, item)) if check_str(string, item): output = True return output