Skip to content

Commit 3fcdd31

Browse files
committed
fix code-style
1 parent 189b368 commit 3fcdd31

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

exec_helpers/_ssh_client_base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
]
6767
_SSHConnChainT = typing.List[typing.Tuple[SSHConfig, ssh_auth.SSHAuth]]
6868
_OptSSHAuthT = typing.Optional[ssh_auth.SSHAuth]
69-
_RType = typing.TypeVar('_RType')
69+
_RType = typing.TypeVar("_RType")
7070

7171

7272
class RetryOnExceptions(tenacity.retry_if_exception): # type: ignore
@@ -190,6 +190,7 @@ def normalize_path(tgt: typing.Callable[..., _RType]) -> typing.Callable[..., _R
190190
:return: wrapped method
191191
:rtype: typing.Callable[..., _RType]
192192
"""
193+
193194
@functools.wraps(tgt)
194195
def wrapper(
195196
self: typing.Any, path: typing.Union[str, pathlib.Path], *args: typing.Any, **kwargs: typing.Any
@@ -208,6 +209,7 @@ def wrapper(
208209
:rtype: typing.Any
209210
"""
210211
return tgt(self, path=pathlib.PurePath(path).as_posix(), *args, **kwargs)
212+
211213
return wrapper
212214

213215

0 commit comments

Comments
 (0)