Skip to content

Commit d76c860

Browse files
committed
fix super
1 parent 78969ac commit d76c860

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/offazure/azext_offazure/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def __init__(self, cli_ctx=None):
2424
offazure_custom = CliCommandType(
2525
operations_tmpl='azext_offazure.custom#{}',
2626
client_factory=cf_offazure_cl)
27-
parent = super(AzureMigrateV2CommandsLoader, self)
28-
parent.__init__(cli_ctx=cli_ctx, custom_command_type=offazure_custom)
27+
super().__init__(cli_ctx=cli_ctx, custom_command_type=offazure_custom)
2928

3029
def load_command_table(self, args):
3130
from azext_offazure.generated.commands import load_command_table

0 commit comments

Comments
 (0)