Skip to content

Commit

Permalink
Removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffser committed Sep 3, 2024
1 parent 1087d3e commit a591270
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/custom_widgets/chat_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ def __init__(self):
self.tab_list = []

def update_welcome_screens(self, show_prompts:bool):
print('SHOW_PROMPTS: ', show_prompts)
for tab in self.tab_list:
if tab.chat_window.welcome_screen:
tab.chat_window.show_welcome_screen(show_prompts)
Expand Down
1 change: 0 additions & 1 deletion src/custom_widgets/model_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ def add_model(self, model_name:str):
def remove_model(self, model_name:str):
self.get_popover().model_list_box.remove(next((model for model in list(self.get_popover().model_list_box) if model.get_name() == model_name), None))
self.model_changed(self.get_popover().model_list_box)
print(self.get_popover().model_list_box.get_selected_row())

def clear_list(self):
self.get_popover().model_list_box.remove_all()
Expand Down
1 change: 0 additions & 1 deletion src/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,6 @@ def current_chat_actions(self, action, user_data):
def cb_text_received(self, clipboard, result):
try:
text = clipboard.read_text_finish(result)
print(text)
#Check if text is a Youtube URL
youtube_regex = re.compile(
r'(https?://)?(www\.)?(youtube|youtu|youtube-nocookie)\.(com|be)/'
Expand Down

0 comments on commit a591270

Please sign in to comment.