Migrate imports to SYS package (pipeline/result_table) and update related imports
Some checks failed
smoke-mm / Install & smoke test mm --help (push) Has been cancelled

This commit is contained in:
2025-12-29 23:28:15 -08:00
parent 30d3bf480b
commit ef01ca03a0
60 changed files with 162 additions and 149 deletions

View File

@@ -6,8 +6,8 @@ import sys
from cmdlet._shared import Cmdlet, CmdletArg, parse_cmdlet_args
from SYS.logger import log
from result_table import ResultTable
import pipeline as ctx
from SYS.result_table import ResultTable
from SYS import pipeline as ctx
def _normalize_choice_list(arg_names: Optional[List[str]]) -> List[str]:
@@ -72,7 +72,7 @@ def _render_list(
ctx.set_last_result_table(table, items)
ctx.set_current_stage_table(table)
from rich_display import stdout_console
from SYS.rich_display import stdout_console
stdout_console().print(table)
@@ -142,7 +142,7 @@ def _render_detail(meta: Dict[str, Any], args: Sequence[str]) -> None:
ctx.set_last_result_table_overlay(table, [meta])
ctx.set_current_stage_table(table)
from rich_display import stdout_console
from SYS.rich_display import stdout_console
stdout_console().print(table)