Skip to content

Commit

Permalink
Fix styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mukhoakash committed Oct 23, 2024
1 parent 377403e commit 4e6fe67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

import re
from typing import Tuple

from azext_aks_preview.azurecontainerstorage._consts import (
Expand Down Expand Up @@ -461,7 +460,7 @@ def generate_vm_sku_cache_for_region(cli_ctx, location=None):
cache={},
key=lambda sku_name, cpu_value=None, nvme_enabled=None: hashkey(sku_name)
)
def vm_sku_details(sku_name, cpu_value=None, nvme_enabled=None):
def vm_sku_details(sku_name, cpu_value=None, nvme_enabled=None): #pylint: disable=unused-argument
return cpu_value, nvme_enabled


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3364,7 +3364,7 @@ def set_up_azure_monitor_profile(self, mc: ManagedCluster) -> ManagedCluster:

return mc

def set_up_azure_container_storage(self, mc: ManagedCluster) -> ManagedCluster:
def set_up_azure_container_storage(self, mc: ManagedCluster) -> ManagedCluster: #pylint: disable=too-many-locals
"""Set up azure container storage for the Managed Cluster object
:return: ManagedCluster
"""
Expand Down

0 comments on commit 4e6fe67

Please sign in to comment.