From 6fde0626130d67f71f20ce8e60df8351ec3b9322 Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 25 Aug 2025 15:12:40 +0200 Subject: [PATCH] fix lint --- cmdeploy/src/cmdeploy/cmdeploy.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cmdeploy/src/cmdeploy/cmdeploy.py b/cmdeploy/src/cmdeploy/cmdeploy.py index cd72aa38..bca38780 100644 --- a/cmdeploy/src/cmdeploy/cmdeploy.py +++ b/cmdeploy/src/cmdeploy/cmdeploy.py @@ -91,7 +91,12 @@ def run_cmd(args, out): if retcode == 0: print("\nYou can try out the relay by talking to this echo bot: ") sshexec = args.get_sshexec() - print(sshexec(call=remote.rshell.shell, kwargs=dict(command="cat /var/lib/echobot/invite-link.txt"))) + print( + sshexec( + call=remote.rshell.shell, + kwargs=dict(command="cat /var/lib/echobot/invite-link.txt"), + ) + ) out.green("Deploy completed, call `cmdeploy dns` next.") elif not remote_data["acme_account_url"]: out.red("Deploy completed but letsencrypt not configured")