cli: print response directly

master
Robert Jördens 2021-04-08 16:26:22 +02:00
parent 7372bcc2e2
commit a3511f5223
1 changed files with 1 additions and 1 deletions

View File

@ -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())