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

@@ -15,7 +15,7 @@ import asyncio
# Add parent directory to path for imports
sys.path.insert(0, str(Path(__file__).parent.parent))
from SYS.config import load_config, resolve_output_dir
from result_table import ResultTable
from SYS.result_table import ResultTable
from ProviderCore.registry import get_search_provider
logger = logging.getLogger(__name__)

View File

@@ -21,11 +21,11 @@ for path in (ROOT_DIR, BASE_DIR):
if str_path not in sys.path:
sys.path.insert(0, str_path)
import pipeline as ctx
from SYS import pipeline as ctx
from CLI import ConfigLoader, PipelineExecutor as CLIPipelineExecutor, WorkerManagerRegistry
from SYS.logger import set_debug
from rich_display import capture_rich_output
from result_table import ResultTable
from SYS.rich_display import capture_rich_output
from SYS.result_table import ResultTable
@dataclass(slots=True)

View File

@@ -36,7 +36,7 @@ for path in (BASE_DIR, ROOT_DIR):
sys.path.insert(0, str_path)
from pipeline_runner import PipelineRunResult # type: ignore # noqa: E402
from result_table import ResultTable # type: ignore # noqa: E402
from SYS.result_table import ResultTable # type: ignore # noqa: E402
from SYS.config import load_config # type: ignore # noqa: E402
from Store.registry import Store as StoreRegistry # type: ignore # noqa: E402