Removed prints
This commit is contained in:
parent
1087d3e336
commit
a591270d58
@ -263,7 +263,6 @@ class chat_list(Gtk.ListBox):
|
||||
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)
|
||||
|
@ -107,7 +107,6 @@ class model_selector_button(Gtk.MenuButton):
|
||||
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()
|
||||
|
@ -719,7 +719,6 @@ Generate a title following these rules:
|
||||
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)/'
|
||||
|
Loading…
x
Reference in New Issue
Block a user