From a3511f522315ffbe287742bb826fb109cd55f72a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Thu, 8 Apr 2021 16:26:22 +0200 Subject: [PATCH] cli: print response directly --- miniconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniconf.py b/miniconf.py index 0901127..d7fd615 100644 --- a/miniconf.py +++ b/miniconf.py @@ -111,7 +111,7 @@ def main(): async def configure_settings(): interface = await Miniconf.create(args.prefix, args.broker) response = await interface.command(args.path, json.loads(args.value)) - print(f"Response: {response}") + print(response) loop.run_until_complete(configure_settings())