Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions azure-devops/azext_devops/dev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
pkg_resources.declare_namespace(__name__)
4 changes: 1 addition & 3 deletions azure-devops/azext_devops/dev/admin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
from ._help import load_admin_help

pkg_resources.declare_namespace(__name__)
from ._help import load_admin_help

load_admin_help()
5 changes: 1 addition & 4 deletions azure-devops/azext_devops/dev/artifacts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
from ._help import load_artifacts_help


pkg_resources.declare_namespace(__name__)
from ._help import load_artifacts_help

load_artifacts_help()
4 changes: 1 addition & 3 deletions azure-devops/azext_devops/dev/boards/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
from ._help import load_boards_help

pkg_resources.declare_namespace(__name__)
from ._help import load_boards_help

load_boards_help()
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
pkg_resources.declare_namespace(__name__)
4 changes: 1 addition & 3 deletions azure-devops/azext_devops/dev/pipelines/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

import pkg_resources
from ._help import load_pipelines_help

pkg_resources.declare_namespace(__name__)
from ._help import load_pipelines_help

load_pipelines_help()
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,3 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

import pkg_resources

pkg_resources.declare_namespace(__name__)
4 changes: 1 addition & 3 deletions azure-devops/azext_devops/dev/repos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
from ._help import load_repos_help

pkg_resources.declare_namespace(__name__)
from ._help import load_repos_help

load_repos_help()
2 changes: 0 additions & 2 deletions azure-devops/azext_devops/devops_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
pkg_resources.declare_namespace(__name__)
4 changes: 1 addition & 3 deletions azure-devops/azext_devops/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
pkg_resources.declare_namespace(__name__)
# --------------------------------------------------------------------------------------------s
Loading