From 58c39162c84b322bce596cce902a826d8db1bf49 Mon Sep 17 00:00:00 2001 From: Oddant1 Date: Thu, 18 Jul 2024 16:26:09 -0700 Subject: [PATCH] get_config_from_file -> load_config_from_file --- q2cli/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/q2cli/commands.py b/q2cli/commands.py index e912b4ab..1ec71475 100644 --- a/q2cli/commands.py +++ b/q2cli/commands.py @@ -509,14 +509,14 @@ def __call__(self, **kwargs): with qiime2.util.redirected_stdio(stdout=log, stderr=log): if parallel: from qiime2.sdk.parallel_config import \ - (get_config_from_file, ParallelConfig) + (load_config_from_file, ParallelConfig) action = action.parallel if parallel_config_fp is None: parallel_config = ParallelConfig() else: config, mapping = \ - get_config_from_file(parallel_config_fp) + load_config_from_file(parallel_config_fp) parallel_config = ParallelConfig(config, mapping) with parallel_config: