From 18627f06c03bbeaf231f682d9ad336e23c7a3136 Mon Sep 17 00:00:00 2001 From: Sisira Panchagnula Date: Thu, 1 Feb 2018 15:50:21 -0800 Subject: [PATCH] FW: --- src/webapps/azext_webapps/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/webapps/azext_webapps/__init__.py b/src/webapps/azext_webapps/__init__.py index 5d7701fd59..f18e8ae9a5 100644 --- a/src/webapps/azext_webapps/__init__.py +++ b/src/webapps/azext_webapps/__init__.py @@ -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): @@ -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: