Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix style issues
  • Loading branch information
kairu-ms committed Apr 22, 2025
commit 906d5acdd172a5e9588ce95cd71ee6dbd34a83f5
3 changes: 1 addition & 2 deletions src/azure-cli/azure/cli/command_modules/network/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# --------------------------------------------------------------------------------------------

from azure.cli.core import AzCommandsLoader
from azure.cli.core.profiles import ResourceType

import azure.cli.command_modules.network._help # pylint: disable=unused-import

Expand Down Expand Up @@ -51,5 +50,5 @@ def load_arguments(self, command):
load_arguments(self, command)


def get_command_loader(cli_ctx):
def get_command_loader(_):
return NetworkCommandsLoader
Original file line number Diff line number Diff line change
Expand Up @@ -370,5 +370,5 @@ def new_handler(ex):
kwargs['exception_handler'] = new_handler


def get_command_loader(cli_ctx):
def get_command_loader(_):
return StorageCommandsLoader
3 changes: 2 additions & 1 deletion src/azure-cli/azure/cli/command_modules/vm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,6 @@ def load_arguments(self, command):
except ImportError:
pass

def get_command_loader(cli_ctx):

def get_command_loader(_):
return ComputeCommandsLoader
Loading