lib: Fix misplaced "# export" markers
A couple of "# export" markers after function prototypes have been pushed along with the closing parenthesis onto the wrong line by the code formatter, fix that. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
eea3e5f14b
commit
dcbe959843
5 changed files with 18 additions and 18 deletions
|
|
@ -109,9 +109,9 @@ class SSHClient(ExecContext):
|
|||
def password(self) -> str | None:
|
||||
return self.uri.password
|
||||
|
||||
def ssh_client(
|
||||
def ssh_client( # export
|
||||
*args, type: str | list[str] | None = None, **kwargs
|
||||
) -> SSHClient: # export
|
||||
) -> SSHClient:
|
||||
from importlib import import_module
|
||||
|
||||
errors: list[str] = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue