Skip to content

Commit 62603db

Browse files
committed
Add pylint
1 parent cd87696 commit 62603db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/azure-cli/azure/cli/command_modules/appservice/_validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def validate_ase_create(cmd, namespace):
9191

9292

9393
def _validate_asp_sku(sku, app_service_environment, zone_redundant):
94-
supported_skus = ['PREMIUMV2', 'PREMIUMV3', 'PREMIUMMV3', 'PREMIUM0V3', 'PREMIUMV4', 'PREMIUMMV4', 'ISOLATEDV2', 'ISOLATEDMV2']
94+
supported_skus = ['PREMIUMV2', 'PREMIUMV3', 'PREMIUMMV3', 'PREMIUM0V3', 'PREMIUMV4', 'PREMIUMMV4', 'ISOLATEDV2', 'ISOLATEDMV2'] # pylint: disable=line-too-long
9595
if zone_redundant and get_sku_tier(sku).upper() not in supported_skus:
9696
raise ValidationError("Zone redundancy cannot be enabled for sku {}".format(sku))
9797
# Isolated SKU is supported only for ASE

0 commit comments

Comments
 (0)