This commit is contained in:
2026-01-18 10:50:42 -08:00
parent 66132811e0
commit 66e6c6eb72
34 changed files with 718 additions and 516 deletions

View File

@@ -31,7 +31,7 @@ except Exception:
WorkerManagerRegistry = None
from SYS.logger import set_debug
from SYS.rich_display import capture_rich_output
from SYS.result_table import ResultTable
from SYS.result_table import Table
@dataclass(slots=True)
@@ -199,7 +199,7 @@ class PipelineRunner:
if table is None and items:
try:
synth = ResultTable("Results")
synth = Table("Results")
for item in items:
synth.add_result(item)
table = synth