Skip to content

Commit 1eb587f

Browse files
committed
Fix validation lint drift
1 parent 6fbe767 commit 1eb587f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

src/xian_cli/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1317,7 +1317,9 @@ def _initialize_node_from_args(args: argparse.Namespace) -> dict:
13171317
profile.get("simulation_max_concurrency", 2)
13181318
),
13191319
simulation_timeout_ms=int(profile.get("simulation_timeout_ms", 3000)),
1320-
simulation_max_stamps=int(profile.get("simulation_max_stamps", 1_000_000)),
1320+
simulation_max_stamps=int(
1321+
profile.get("simulation_max_stamps", 1_000_000)
1322+
),
13211323
parallel_execution_enabled=bool(
13221324
profile.get("parallel_execution_enabled", False)
13231325
),

tests/test_cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,9 @@ def test_network_join_rejects_negative_parallel_settings(self) -> None:
705705
]
706706
)
707707

708-
def test_network_join_rejects_non_positive_simulation_settings(self) -> None:
708+
def test_network_join_rejects_non_positive_simulation_settings(
709+
self,
710+
) -> None:
709711
with tempfile.TemporaryDirectory() as tmp_dir:
710712
base_dir = Path(tmp_dir)
711713
configs_dir = base_dir / "xian-configs"

0 commit comments

Comments
 (0)