Update most test/lint dependencies (#15582)

This commit is contained in:
renovate[bot]
2026-04-01 17:54:51 +02:00
committed by GitHub
parent 8ffc43610f
commit 8b31f2639e
142 changed files with 310 additions and 357 deletions
+2 -2
View File
@@ -76,7 +76,7 @@ class Connection:
confirm: bool = True,
) -> paramiko.SFTPAttributes: ...
def execute(self, command: str) -> list[str]: ...
def cd(self, remotepath: _Path | None = None) -> AbstractContextManager[None]: ... # noqa: F811
def cd(self, remotepath: _Path | None = None) -> AbstractContextManager[None]: ...
def chdir(self, remotepath: _Path) -> None: ...
def cwd(self, remotepath: _Path) -> None: ...
def chmod(self, remotepath: _Path, mode: int = 777) -> None: ...
@@ -102,7 +102,7 @@ class Connection:
def lexists(self, remotepath: _Path) -> bool: ...
def symlink(self, remote_src: _Path, remote_dest: _Path) -> None: ...
def truncate(self, remotepath: _Path, size: int) -> int: ...
def walktree( # noqa: F811
def walktree(
self,
remotepath: _Path,
fcallback: _PathCallback,