Skip to content

Commit 5ec7915

Browse files
tbitcsoz-agent
andcommitted
style: ruff format fixes for CI
Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent a3f7460 commit 5ec7915

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

tests/test_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ def test_load_config_handles_empty_file(self):
9999
self.assertEqual(cfg.engine, "docker")
100100
self.assertIsNone(cfg.image)
101101

102-
103102
def test_wants_container_legacy_container(self):
104103
"""Legacy env.type=container should set wants_container=True."""
105104
from west_env.config import EnvConfig

west_commands/env.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,7 @@ def _sync(self, cfg, mode, back=False):
327327
timeout=15,
328328
)
329329
except subprocess.TimeoutExpired:
330-
raise SystemExit(
331-
f"FATAL: '{engine_name} info' timed out.\n"
332-
f" Is the Docker/Podman daemon running?"
333-
)
330+
raise SystemExit(f"FATAL: '{engine_name} info' timed out.\n Is the Docker/Podman daemon running?")
334331
except (subprocess.CalledProcessError, FileNotFoundError) as exc:
335332
raise SystemExit(
336333
f"FATAL: '{engine_name} info' failed: {exc}\n"

0 commit comments

Comments
 (0)