diff --git a/not1mm/plugins/arrl_ss_cw.py b/not1mm/plugins/arrl_ss_cw.py index 43295af..bc80634 100644 --- a/not1mm/plugins/arrl_ss_cw.py +++ b/not1mm/plugins/arrl_ss_cw.py @@ -137,7 +137,6 @@ def prefill(self): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_2.text() == "": diff --git a/not1mm/plugins/arrl_vhf_jan.py b/not1mm/plugins/arrl_vhf_jan.py index aa4eee7..bc97d56 100644 --- a/not1mm/plugins/arrl_vhf_jan.py +++ b/not1mm/plugins/arrl_vhf_jan.py @@ -540,7 +540,6 @@ def ft8_handler(the_packet: dict): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_2.text() == "": diff --git a/not1mm/plugins/arrl_vhf_jun.py b/not1mm/plugins/arrl_vhf_jun.py index 021a9ca..f69ca99 100644 --- a/not1mm/plugins/arrl_vhf_jun.py +++ b/not1mm/plugins/arrl_vhf_jun.py @@ -508,7 +508,6 @@ def ft8_handler(the_packet: dict): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_2.text() == "": diff --git a/not1mm/plugins/arrl_vhf_sep.py b/not1mm/plugins/arrl_vhf_sep.py index f428f63..02823e1 100644 --- a/not1mm/plugins/arrl_vhf_sep.py +++ b/not1mm/plugins/arrl_vhf_sep.py @@ -508,7 +508,6 @@ def ft8_handler(the_packet: dict): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_2.text() == "": diff --git a/not1mm/plugins/cq_160_cw.py b/not1mm/plugins/cq_160_cw.py index 46ee35e..7853cf2 100644 --- a/not1mm/plugins/cq_160_cw.py +++ b/not1mm/plugins/cq_160_cw.py @@ -453,7 +453,6 @@ def recalculate_mults(self): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") # if self.other_1.text() == "": diff --git a/not1mm/plugins/cq_160_ssb.py b/not1mm/plugins/cq_160_ssb.py index af16896..a8550fb 100644 --- a/not1mm/plugins/cq_160_ssb.py +++ b/not1mm/plugins/cq_160_ssb.py @@ -453,7 +453,6 @@ def recalculate_mults(self): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") # if self.other_1.text() == "": diff --git a/not1mm/plugins/cq_ww_cw.py b/not1mm/plugins/cq_ww_cw.py index e7c2bc7..ba656a0 100644 --- a/not1mm/plugins/cq_ww_cw.py +++ b/not1mm/plugins/cq_ww_cw.py @@ -523,7 +523,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_2.text() == "": diff --git a/not1mm/plugins/cq_ww_rtty.py b/not1mm/plugins/cq_ww_rtty.py index 7261fcb..d239c87 100644 --- a/not1mm/plugins/cq_ww_rtty.py +++ b/not1mm/plugins/cq_ww_rtty.py @@ -642,7 +642,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "": diff --git a/not1mm/plugins/cq_ww_ssb.py b/not1mm/plugins/cq_ww_ssb.py index 3a82492..e3f1a81 100644 --- a/not1mm/plugins/cq_ww_ssb.py +++ b/not1mm/plugins/cq_ww_ssb.py @@ -511,7 +511,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_2.text() == "": diff --git a/not1mm/plugins/k1usn_sst.py b/not1mm/plugins/k1usn_sst.py index 9660fe1..63be61f 100644 --- a/not1mm/plugins/k1usn_sst.py +++ b/not1mm/plugins/k1usn_sst.py @@ -496,7 +496,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "": diff --git a/not1mm/plugins/naqp_cw.py b/not1mm/plugins/naqp_cw.py index 0262264..984d95d 100644 --- a/not1mm/plugins/naqp_cw.py +++ b/not1mm/plugins/naqp_cw.py @@ -546,7 +546,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "": diff --git a/not1mm/plugins/naqp_rtty.py b/not1mm/plugins/naqp_rtty.py index 2e5dc9c..06cb323 100644 --- a/not1mm/plugins/naqp_rtty.py +++ b/not1mm/plugins/naqp_rtty.py @@ -653,7 +653,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "": diff --git a/not1mm/plugins/naqp_ssb.py b/not1mm/plugins/naqp_ssb.py index 20088ec..7efd21e 100644 --- a/not1mm/plugins/naqp_ssb.py +++ b/not1mm/plugins/naqp_ssb.py @@ -516,7 +516,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "": diff --git a/not1mm/plugins/raem.py b/not1mm/plugins/raem.py index c0093c3..2a8cade 100644 --- a/not1mm/plugins/raem.py +++ b/not1mm/plugins/raem.py @@ -494,7 +494,6 @@ def recalculate_mults(self): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_2.text() == "": diff --git a/not1mm/plugins/stew_perry_topband.py b/not1mm/plugins/stew_perry_topband.py index 5801d82..3867115 100644 --- a/not1mm/plugins/stew_perry_topband.py +++ b/not1mm/plugins/stew_perry_topband.py @@ -369,7 +369,6 @@ def recalculate_mults(self): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "": diff --git a/not1mm/plugins/weekly_rtty.py b/not1mm/plugins/weekly_rtty.py index 903fb77..bee676b 100644 --- a/not1mm/plugins/weekly_rtty.py +++ b/not1mm/plugins/weekly_rtty.py @@ -577,7 +577,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "": diff --git a/not1mm/plugins/winter_field_day.py b/not1mm/plugins/winter_field_day.py index 0b7dcf7..24855f5 100644 --- a/not1mm/plugins/winter_field_day.py +++ b/not1mm/plugins/winter_field_day.py @@ -444,7 +444,6 @@ def process_esm(self, new_focused_widget=None, with_enter=False): def check_call_history(self): """""" result = self.database.fetch_call_history(self.callsign.text()) - print(f"{result=}") if result: self.history_info.setText(f"{result.get('UserText','')}") if self.other_1.text() == "":