Skip to content

Commit

Permalink
FW:
Browse files Browse the repository at this point in the history
  • Loading branch information
panchagnula committed Feb 1, 2018
1 parent e6c5c7f commit 18627f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/webapps/azext_webapps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
# --------------------------------------------------------------------------------------------

from azure.cli.core import AzCommandsLoader
import azext_webapps._help # pylint: disable=unused-import

# pylint: disable=line-too-long
import azext_webapps._help


class WebappsExtCommandLoader(AzCommandsLoader):
Expand All @@ -15,7 +13,9 @@ def __init__(self, cli_ctx=None):
from azure.cli.core.commands import CliCommandType
webapps_custom = CliCommandType(
operations_tmpl='azext_webapps.custom#{}')
super(WebappsExtCommandLoader, self).__init__(cli_ctx=cli_ctx, custom_command_type=webapps_custom, min_profile="2017-03-10-profile")
super(WebappsExtCommandLoader, self).__init__(cli_ctx=cli_ctx,
custom_command_type=webapps_custom,
min_profile="2017-03-10-profile")

def load_command_table(self, _):
with self.command_group('webapp') as g:
Expand Down

0 comments on commit 18627f0

Please sign in to comment.