From 1feba72256fdc790ae667e4f036caaf4a9b65519 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 08:57:42 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- start.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/start.py b/start.py index b80d796..e4e8ec4 100644 --- a/start.py +++ b/start.py @@ -99,13 +99,15 @@ def setup(self, _=None): # Add the key to the ssh-agent. self.add_key_to_ssh_agent() - + self.output.value = "The keys were updated 👍" def add_key_to_ssh_agent(self): """Add the key to the ssh-agent.""" subprocess.run( - ["ssh-add", "-t", "1d", str(self.private_key_file)], encoding="utf-8", check=True, + ["ssh-add", "-t", "1d", str(self.private_key_file)], + encoding="utf-8", + check=True, ) def get_keys(self):