mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-08-03 04:34:31 -07:00
fix linting and updating maintenance guide
Updating the maintainers guide with updated intructions from Ansible engineers. Fixing linting issues, and adding the linter as a GitHub workflow to ensure there are no regressions.
This commit is contained in:
parent
3fb4763e37
commit
a9545c77a4
15 changed files with 91 additions and 74 deletions
|
@ -535,14 +535,14 @@ def is_different(module, response):
|
|||
response_vals = {}
|
||||
for k, v in response.items():
|
||||
if k in keys_to_ignore:
|
||||
continue
|
||||
continue
|
||||
if k in request:
|
||||
response_vals[k] = v
|
||||
|
||||
request_vals = {}
|
||||
for k, v in request.items():
|
||||
if k in keys_to_ignore:
|
||||
continue
|
||||
continue
|
||||
if k in response:
|
||||
request_vals[k] = v
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue