Skip to content

Commit

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

from azure.cli.core import AzCommandsLoader

# pylint: disable=unused-import

import azext_webapps._help


Expand All @@ -13,8 +16,8 @@ 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,
super(WebappsExtCommandLoader, self).__init__(cli_ctx=cli_ctx,
custom_command_type=webapps_custom,
min_profile="2017-03-10-profile")

def load_command_table(self, _):
Expand All @@ -26,7 +29,7 @@ def load_arguments(self, _):
with self.argument_context('webapp quickstart') as c:
c.argument('name', options_list=['--name', '-n'], help='name of the new webapp')
c.argument('dryrun',
help="shows summary of the create operation instead of actually creating and deploying the app",
help="shows summary of the create and deploy operation instead of executing it",
default=False, action='store_true')


Expand Down

0 comments on commit c93166f

Please sign in to comment.