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

@@ -26,7 +26,7 @@ normalize_result_input = sh.normalize_result_input
parse_cmdlet_args = sh.parse_cmdlet_args
should_show_help = sh.should_show_help
import pipeline as ctx
from SYS import pipeline as ctx
try:
from pypdf import PdfWriter, PdfReader
@@ -38,7 +38,7 @@ except ImportError:
PdfReader = None
try:
from metadata import (
from SYS.metadata import (
read_tags_from_file,
merge_multiple_tag_lists,
)