Skip to content

Commit

Permalink
fixed common
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesfan1 committed Jun 27, 2024
1 parent 5558ed3 commit e748d84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/nginx/azext_nginx/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.60.0"
"azext.minCliCoreVersion": "2.61.0"
}
7 changes: 3 additions & 4 deletions src/nginx/azext_nginx/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

# pylint: disable=line-too-long
# pylint: disable=line-too-long,too-many-lines

def load_command_table(self, _): # pylint: disable=unused-argument
with self.command_group('nginx deployment configuration') as g:
with self.command_group('nginx deployment configuration'):
from .custom import ConfigurationUpdate
self.command_table["nginx deployment configuration update"] = ConfigurationUpdate(loader=self)

self.command_table["nginx deployment configuration update"] = ConfigurationUpdate(loader=self)
3 changes: 3 additions & 0 deletions src/nginx/azext_nginx/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

# pylint: disable=no-self-use, no-member, too-many-lines, unused-argument, skip-file
# pylint: disable=protected-access, too-few-public-methods, line-too-long

from .aaz.latest.nginx.deployment.configuration._update import Update as _ConfigurationUpdate
from azure.cli.core.aaz import *

Expand Down

0 comments on commit e748d84

Please sign in to comment.