Skip to content

Commit

Permalink
@mbridak removed useless print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Nov 9, 2024
1 parent 6eee85b commit 6a9b0a9
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 17 deletions.
1 change: 0 additions & 1 deletion not1mm/plugins/arrl_ss_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/arrl_vhf_jan.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/arrl_vhf_jun.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/arrl_vhf_sep.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/cq_160_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/cq_160_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/cq_ww_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/cq_ww_rtty.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/cq_ww_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/k1usn_sst.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/naqp_cw.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/naqp_rtty.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/naqp_ssb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/raem.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/stew_perry_topband.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/weekly_rtty.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down
1 change: 0 additions & 1 deletion not1mm/plugins/winter_field_day.py
Original file line number Diff line number Diff line change
Expand Up @@ -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() == "":
Expand Down

0 comments on commit 6a9b0a9

Please sign in to comment.