-
Notifications
You must be signed in to change notification settings - Fork 410
Various pylint fixups #2221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Various pylint fixups #2221
Changes from 12 commits
aa4b9a2
64164c6
030cc1d
65c0e43
599f36f
c118d35
3f63f6a
e75a741
f859650
921b980
b346eb4
60d3e8d
74924eb
d1c4c93
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| --- | ||
| minor_changes: | ||
| - various modules - linting fixups (https://github.com/ansible-collections/community.aws/pull/2221). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -520,12 +520,12 @@ def compare_params(param_described): | |
| param_described.pop("Tags", None) | ||
| modparams.pop("Tags", None) | ||
| changed = False | ||
| for paramname in modparams: | ||
| for param_name, param_value in modparams.items(): | ||
| if ( | ||
|
||
| paramname == "Password" | ||
| or paramname in param_described | ||
| and param_described[paramname] == modparams[paramname] | ||
| or str(param_described[paramname]).lower() == modparams[paramname] | ||
| param_name == "Password" | ||
| or param_name in param_described | ||
| and param_described[param_name] == param_value | ||
| or str(param_described[param_name]).lower() == param_value | ||
| ): | ||
| pass | ||
| else: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.