diff --git a/gqrxHandler.py b/gqrxHandler.py index 69cbd89..54a3611 100644 --- a/gqrxHandler.py +++ b/gqrxHandler.py @@ -23,11 +23,9 @@ class GQRXHandler(): def change_squelch(self, squelch): tel_conn = self.create_telnet_connection() - print(f"Changing squelch to {squelch}") - print(f"Squelch = {squelch}") if not check_negative(squelch): squelch = float(-abs(squelch)) - print(f"Squelch = {squelch}") + print(f"Changing squelch to {squelch}") tel_conn.write(bytes(f"L SQL {float(squelch)}", 'utf-8')) tel_conn.close()