From 8735b83e437af8ec80637bea011459679a6eb7f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Wed, 20 Jan 2021 18:31:45 +0100 Subject: [PATCH] cli: fix print after threshold set close #137 --- booster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booster.py b/booster.py index 738cabee..ead1db5f 100644 --- a/booster.py +++ b/booster.py @@ -369,7 +369,7 @@ async def channel_configuration(args): await interface.write_property(args.channel, PropertyId.OutputInterlockThreshold, cmd_args[0]) - print(f'Channel {args.channel}: Output power threshold = {args.threshold} dBm') + print(f'Channel {args.channel}: Output power threshold set') elif command == 'read': value = await interface.read_property(args.channel, cmd_args[0])