Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesfan1 committed Jul 9, 2024
1 parent 4a91622 commit a261e5d
Show file tree
Hide file tree
Showing 4 changed files with 452 additions and 1,610 deletions.
2 changes: 1 addition & 1 deletion src/nginx/azext_nginx/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
def load_command_table(self, _): # pylint: disable=unused-argument
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)
6 changes: 3 additions & 3 deletions src/nginx/azext_nginx/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# 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
# pylint: skip-file
# flake8: noqa

from .aaz.latest.nginx.deployment.configuration._update import Update as _ConfigurationUpdate
from azure.cli.core.aaz import *
Expand Down Expand Up @@ -250,4 +250,4 @@ def _build_schema_nginx_configuration_read(cls, _schema):
_schema.name = cls._schema_nginx_configuration_read.name
# _schema.properties = cls._schema_nginx_configuration_read.properties # by not setting the properties for get it will only use our update payload
_schema.system_data = cls._schema_nginx_configuration_read.system_data
_schema.type = cls._schema_nginx_configuration_read.type
_schema.type = cls._schema_nginx_configuration_read.type
Loading

0 comments on commit a261e5d

Please sign in to comment.