From 65b79951073143771b34ee590ad6867c0f1e5fc7 Mon Sep 17 00:00:00 2001 From: Carl Montanari Date: Mon, 17 Jun 2024 06:26:14 -0700 Subject: [PATCH] chore: update docstring for _resolve_ssh_config in base driver --- scrapli/driver/base/base_driver.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scrapli/driver/base/base_driver.py b/scrapli/driver/base/base_driver.py index 98485aeb..d06b9433 100644 --- a/scrapli/driver/base/base_driver.py +++ b/scrapli/driver/base/base_driver.py @@ -610,6 +610,8 @@ def _resolve_ssh_config(self, ssh_config_file: str, transport: str) -> str: Args: ssh_config_file: string representation of ssh config file to try to use + transport: string name of selected transport (so we can apply a bit of special handling + if system transport in use) Returns: str: string path to ssh config file or an empty string @@ -640,6 +642,8 @@ def _resolve_ssh_known_hosts(self, ssh_known_hosts: str, transport: str) -> str: Args: ssh_known_hosts: string representation of ssh config file to try to use + transport: string name of selected transport (so we can apply a bit of special handling + if system transport in use) Returns: str: string path to ssh known hosts file or an empty string