Remove duplicate definitions of and update imports of case_insensitive_single_match and case_insensitive_equal to point to the definitions in workspace_maintenance.py
Signed-off-by: Ashley E Desimone <ashley.e.desim...@intel.com> Cc: Nate DeSimone <nathaniel.l.desim...@intel.com> Cc: Puja Pandya <puja.pan...@intel.com> Cc: Erik Bjorge <erik.c.bjo...@intel.com> Cc: Bret Barkelew <bret.barke...@microsoft.com> Cc: Prince Agyeman <prince.agye...@intel.com> --- edkrepo/commands/clone_command.py | 3 ++- edkrepo/common/common_repo_functions.py | 14 +------------- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/edkrepo/commands/clone_command.py b/edkrepo/commands/clone_command.py index 701a853..cd65fe6 100644 --- a/edkrepo/commands/clone_command.py +++ b/edkrepo/commands/clone_command.py @@ -14,12 +14,13 @@ from edkrepo.commands.edkrepo_command import EdkrepoCommand from edkrepo.commands.edkrepo_command import SubmoduleSkipArgument import edkrepo.commands.arguments.clone_args as arguments from edkrepo.common.common_repo_functions import pull_latest_manifest_repo, clone_repos, sparse_checkout, verify_manifest_data -from edkrepo.common.common_repo_functions import case_insensitive_single_match, update_editor_config +from edkrepo.common.common_repo_functions import update_editor_config from edkrepo.common.common_repo_functions import write_included_config, write_conditional_include from edkrepo.common.common_repo_functions import find_project_in_index, combinations_in_manifest from edkrepo.common.edkrepo_exception import EdkrepoInvalidParametersException, EdkrepoManifestInvalidException from edkrepo.common.humble import CLONE_INVALID_WORKSPACE, CLONE_INVALID_PROJECT_ARG, CLONE_INVALID_COMBO_ARG from edkrepo.common.humble import SPARSE_CHECKOUT, CLONE_INVALID_LOCAL_ROOTS +from edkrepo.common.workspace_maintenance.workspace_maintenance import case_insensitive_single_match from edkrepo_manifest_parser.edk_manifest import CiIndexXml, ManifestXml diff --git a/edkrepo/common/common_repo_functions.py b/edkrepo/common/common_repo_functions.py index a333489..485aa26 100644 --- a/edkrepo/common/common_repo_functions.py +++ b/edkrepo/common/common_repo_functions.py @@ -60,6 +60,7 @@ from edkrepo.common.edkrepo_exception import EdkrepoNotFoundException, EdkrepoGi from edkrepo.common.edkrepo_exception import EdkrepoFoundMultipleException, EdkrepoHookNotFoundException from edkrepo.common.edkrepo_exception import EdkrepoGitConfigSetupException, EdkrepoManifestInvalidException from edkrepo.common.workspace_maintenance.manifest_repos_maintenance import pull_single_manifest_repo +from edkrepo.common.workspace_maintenance.workspace_maintenance import case_insensitive_single_match from edkrepo.common.ui_functions import init_color_console from edkrepo_manifest_parser import edk_manifest from edkrepo_manifest_parser.edk_manifest_validation import validate_manifestrepo @@ -571,19 +572,6 @@ def checkout(combination_or_sha, verbose=False, override=False, log=None): print(SPARSE_CHECKOUT) sparse_checkout(workspace_path, current_repos, manifest) - -def case_insensitive_equal(str1, str2): - return unicodedata.normalize("NFKD", str1.casefold()) == unicodedata.normalize("NFKD", str2.casefold()) - - -def case_insensitive_single_match(str1, str_list): - matches = [x for x in str_list if case_insensitive_equal(str1, x)] - if len(matches) == 0: - raise EdkrepoNotFoundException(GEN_A_NOT_IN_B.format(str1, str_list)) - elif len(matches) > 1: - raise EdkrepoFoundMultipleException(GEN_FOUND_MULT_A_IN_B.format(str1, str_list)) - return matches[0] - def get_latest_sha(repo, branch, remote_or_url='origin'): try: (latest_sha, ref) = repo.git.ls_remote(remote_or_url, 'refs/heads/{}'.format(branch)).split() -- 2.16.2.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#58527): https://edk2.groups.io/g/devel/message/58527 Mute This Topic: https://groups.io/mt/73407244/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-