From a5d724ff6584d0799c0653059e890d669de43062 Mon Sep 17 00:00:00 2001 From: Nose Date: Mon, 29 Dec 2025 23:57:04 -0800 Subject: [PATCH] hj --- SYS/pipeline.py | 2 +- cmdlet/search_provider.py | 2 +- cmdlet/search_store.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SYS/pipeline.py b/SYS/pipeline.py index b934555..65beecf 100644 --- a/SYS/pipeline.py +++ b/SYS/pipeline.py @@ -8,7 +8,7 @@ Key Concepts: - Each stage receives input items and emits output items - Printing behavior is controlled based on pipeline position - Stage context tracks whether this is the last stage (affects output verbosity) - + PowerShell-like piping model: - Each stage processes items individually - Stage calls emit() for each output item diff --git a/cmdlet/search_provider.py b/cmdlet/search_provider.py index 8d5329f..f800f85 100644 --- a/cmdlet/search_provider.py +++ b/cmdlet/search_provider.py @@ -223,7 +223,7 @@ class Search_Provider(Cmdlet): ) results_list = [] - import result_table + from SYS import result_table importlib.reload(result_table) from SYS.result_table import ResultTable diff --git a/cmdlet/search_store.py b/cmdlet/search_store.py index c06d771..9a66f99 100644 --- a/cmdlet/search_store.py +++ b/cmdlet/search_store.py @@ -253,7 +253,7 @@ class Search_Store(Cmdlet): ) results_list = [] - import result_table + from SYS import result_table import importlib importlib.reload(result_table)