Skip to content

Commit

Permalink
fix super
Browse files Browse the repository at this point in the history
  • Loading branch information
AllyW committed Jan 31, 2024
1 parent 78969ac commit d76c860
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/offazure/azext_offazure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ def __init__(self, cli_ctx=None):
offazure_custom = CliCommandType(
operations_tmpl='azext_offazure.custom#{}',
client_factory=cf_offazure_cl)
parent = super(AzureMigrateV2CommandsLoader, self)
parent.__init__(cli_ctx=cli_ctx, custom_command_type=offazure_custom)
super().__init__(cli_ctx=cli_ctx, custom_command_type=offazure_custom)

def load_command_table(self, args):
from azext_offazure.generated.commands import load_command_table
Expand Down

0 comments on commit d76c860

Please sign in to comment.