From 5b2e853f9d4730b3a1a3818d449235d8f1f3940d Mon Sep 17 00:00:00 2001 From: Hang Lei Date: Wed, 28 Dec 2022 15:07:13 +0800 Subject: [PATCH] Move to vendored_sdks --- src/interactive/azext_interactive/azclishell/argfinder.py | 2 +- .../{azclishell => vendored_sdks/argcomplete}/compat.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/interactive/azext_interactive/{azclishell => vendored_sdks/argcomplete}/compat.py (100%) diff --git a/src/interactive/azext_interactive/azclishell/argfinder.py b/src/interactive/azext_interactive/azclishell/argfinder.py index cc6155f9c00..8e055127610 100644 --- a/src/interactive/azext_interactive/azclishell/argfinder.py +++ b/src/interactive/azext_interactive/azclishell/argfinder.py @@ -7,7 +7,7 @@ from argcomplete import CompletionFinder -from .compat import USING_PYTHON2, ensure_bytes +from ..vendored_sdks.argcomplete.compat import USING_PYTHON2, ensure_bytes class ArgsFinder(CompletionFinder): # pylint: disable=too-few-public-methods diff --git a/src/interactive/azext_interactive/azclishell/compat.py b/src/interactive/azext_interactive/vendored_sdks/argcomplete/compat.py similarity index 100% rename from src/interactive/azext_interactive/azclishell/compat.py rename to src/interactive/azext_interactive/vendored_sdks/argcomplete/compat.py