Skip to content

Commit

Permalink
Suppress linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kairu-ms committed Oct 16, 2024
1 parent 7c88848 commit 60a5caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/azure-cli-core/azure/cli/core/aaz/_content_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def set_prop(self, prop_name, typ, arg_key=None, typ_kwargs=None):
value[prop_name] = {}
else:
raise NotImplementedError()
if value != None:
if value != None: # noqa: E711, pylint: disable=singleton-comparison
sub_values.append(value[prop_name])
sub_args.append(sub_arg)

Expand Down

0 comments on commit 60a5caa

Please sign in to comment.