From 771afabd7dcd7556b11e4cbc5683f7f1fecbdf9d Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Mon, 19 Dec 2022 15:06:30 +0100 Subject: [PATCH] updated cli tools cq and ping --- tools/send_ping_cq.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/send_ping_cq.py b/tools/send_ping_cq.py index 2895010a..a0bb8cb2 100644 --- a/tools/send_ping_cq.py +++ b/tools/send_ping_cq.py @@ -17,8 +17,8 @@ parser.add_argument('--port', dest="socket_port", default=3000, help="Set socket parser.add_argument('--host', dest="socket_host", default='localhost', help="Set the host, the socket is listening on.", type=str) parser.add_argument('--dxcallsign', dest="dxcallsign", default='AA0AA', help="Select the destination callsign", type=str) parser.add_argument('--mycallsign', dest="mycallsign", default='AA0AA', help="Select the own callsign", type=str) -parser.add_argument('--ping', dest="ping", action="store_true", help="Send PING", type=str) -parser.add_argument('--cq', dest="cq", action="store_true", help="Send CQ", type=str) +parser.add_argument('--ping', dest="ping", action="store_true", help="Send PING") +parser.add_argument('--cq', dest="cq", action="store_true", help="Send CQ") args = parser.parse_args()