kin: KIN-OBS-024 Перенести import re в блок stdlib-импортов в runner.py

This commit is contained in:
Gros Frumos 2026-03-17 18:26:43 +02:00
parent d5818c64e4
commit e8d96f5332
2 changed files with 17 additions and 3 deletions

View file

@ -91,7 +91,7 @@ def _render_watch(
for line in lines[-15:]:
print(line)
elif pipeline:
print("Waiting for first agent...")
print("No output yet.")
print(sep)
@ -146,6 +146,7 @@ def cmd_watch(conn, task_id: str) -> None:
try:
while True:
task = models.get_task(conn, task_id)
_clear_screen()
pipeline = models.get_pipeline_for_watch(conn, task_id)