Skip to content

Commit

Permalink
Move import to inside deserialize function
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinsID committed Mar 22, 2022
1 parent ef0cbc1 commit 943cafd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containerapp/azext_containerapp/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

from ._client_factory import handle_raw_exception
from ._clients import ManagedEnvironmentClient, ContainerAppClient, GitHubActionClient, DaprComponentClient
from ._sdk_models import * # pylint: disable=wildcard-import, unused-wildcard-import
from ._github_oauth import get_github_access_token
from ._models import (
ManagedEnvironment as ManagedEnvironmentModel,
Expand Down Expand Up @@ -84,6 +83,7 @@ def load_yaml_file(file_name):


def create_deserializer():
from ._sdk_models import ContainerApp # pylint: disable=unused-import
from msrest import Deserializer
import sys
import inspect
Expand Down

0 comments on commit 943cafd

Please sign in to comment.