Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 943cafd

Browse files
committed
Move import to inside deserialize function
1 parent ef0cbc1 commit 943cafd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containerapp/azext_containerapp/custom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
from ._client_factory import handle_raw_exception
2323
from ._clients import ManagedEnvironmentClient, ContainerAppClient, GitHubActionClient, DaprComponentClient
24-
from ._sdk_models import * # pylint: disable=wildcard-import, unused-wildcard-import
2524
from ._github_oauth import get_github_access_token
2625
from ._models import (
2726
ManagedEnvironment as ManagedEnvironmentModel,
@@ -84,6 +83,7 @@ def load_yaml_file(file_name):
8483

8584

8685
def create_deserializer():
86+
from ._sdk_models import ContainerApp # pylint: disable=unused-import
8787
from msrest import Deserializer
8888
import sys
8989
import inspect

0 commit comments

Comments
 (0)