From 7ab745fa150e76e8fa624770ec9fb7fb29b5a779 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Fri, 26 Apr 2024 15:47:40 -0400 Subject: [PATCH] Accelerate `replication_tree` (#38) --- axidence/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axidence/context.py b/axidence/context.py index a6ff927..1672585 100644 --- a/axidence/context.py +++ b/axidence/context.py @@ -39,7 +39,7 @@ def plugin_factory(st, data_type, suffixes): plugin = st._plugin_class_registry[data_type] new_plugins = [] - p = st._get_plugins((data_type,), run_id="0")[data_type] + p = st._Context__get_plugin(run_id="0", data_type=data_type) for suffix in suffixes: snake = "_" + strax.camel_to_snake(suffix)