From 98abca6e8e562375eb165d47eed9516dc46f431a Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Mon, 29 Sep 2025 20:16:45 -0400 Subject: [PATCH] Update ssh.py Fixed linting errors --- hyperglass/execution/drivers/ssh.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hyperglass/execution/drivers/ssh.py b/hyperglass/execution/drivers/ssh.py index 950e81d..90401d8 100644 --- a/hyperglass/execution/drivers/ssh.py +++ b/hyperglass/execution/drivers/ssh.py @@ -48,7 +48,9 @@ class SSHConnection(Connection): proxy.credential.password.get_secret_value() ) try: - return open_tunnel(ssh_address_or_host=proxy._target, ssh_port=proxy.port, **tunnel_kwargs) + return open_tunnel( + ssh_address_or_host=proxy._target, ssh_port=proxy.port, **tunnel_kwargs + ) except BaseSSHTunnelForwarderError as scrape_proxy_error: log.bind(device=self.device.name, proxy=proxy.name).error(