From 7e7ad485ce7058a883f78fb757e8596104729621 Mon Sep 17 00:00:00 2001 From: bpinsard Date: Fri, 30 Aug 2024 10:37:11 -0400 Subject: [PATCH] fix comment --- datalad/core/distributed/clone.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/datalad/core/distributed/clone.py b/datalad/core/distributed/clone.py index 7576299f68..6a1b4e5a2f 100644 --- a/datalad/core/distributed/clone.py +++ b/datalad/core/distributed/clone.py @@ -50,7 +50,7 @@ rmtree, ) -from .clone_utils import ( # needed because other code imports it from here; RIA imports needed b/c datalad-next imports it from here ATM;; Remove after core was released and next dropped the ria patch. +from .clone_utils import ( # needed because other code imports it from here _check_autoenable_special_remotes, _format_clone_errors, _generate_candidate_clone_sources, @@ -60,6 +60,11 @@ _test_existing_clone_target, _try_clone_candidates, decode_source_spec, +) + +from .clone_utils import ( # isort: skip + # RIA imports needed b/c datalad-next imports it from here ATM + # Remove after core was released and next dropped the ria patch. postclone_preannex_cfg_ria, postclonecfg_ria, )