Skip to content

Commit

Permalink
[aks-preview]: fix python3-only super() syntax (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma authored and tjprescott committed Apr 11, 2019
1 parent 6f6da76 commit f93a654
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/aks-preview/azext_aks_preview/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ def load_command_table(self, args):
return self.command_table

def load_arguments(self, command):
# super(ContainerServiceCommandsLoader, self).load_arguments(command)
super().load_arguments(command)
super(ContainerServiceCommandsLoader, self).load_arguments(command)
from ._params import load_arguments
load_arguments(self, command)

Expand Down

0 comments on commit f93a654

Please sign in to comment.