Skip to content

Commit 1409fb0

Browse files
Bump black from 25.12.0 to 26.1.0 (#925)
Bumps [black](https://github.com/psf/black) from 25.12.0 to 26.1.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@25.12.0...26.1.0) --- updated-dependencies: - dependency-name: black dependency-version: 26.1.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 33300bf commit 1409fb0

File tree

4 files changed

+37
-37
lines changed

4 files changed

+37
-37
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ docs = [
8282
"sphinx-rtd-theme==3.0.2"
8383
]
8484
lint = [
85-
"black==25.12.0",
85+
"black==26.1.0",
8686
"codespell==2.4.1",
8787
"flake8-bugbear==25.11.29",
8888
"isort==7.0.0",

streamflow/deployment/connector/ssh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async def _get_connection(
6767
) -> asyncssh.SSHClientConnection | None:
6868
if config is None:
6969
return None
70-
(hostname, port) = parse_hostname(config.hostname)
70+
hostname, port = parse_hostname(config.hostname)
7171
return await asyncssh.connect(
7272
client_keys=config.client_keys,
7373
compression_algs=None,

tests/utils/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ async def _get_connection(
319319
config = cast(SSHChannelErrorConfig, config)
320320
if config is None:
321321
return None
322-
(hostname, port) = parse_hostname(config.hostname)
322+
hostname, port = parse_hostname(config.hostname)
323323

324324
def get_client_factory():
325325
return SSHChannelErrorClient(config.connector)

0 commit comments

Comments
 (0)