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)