Skip to content

Commit 6d12f71

Browse files
authored
Fix linting issues (ansible-collections#781)
1 parent ebb0107 commit 6d12f71

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

plugins/modules/postgresql_ping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
register: result
6767
# If you need to fail when the server is not available,
6868
# uncomment the following line:
69-
#failed_when: not result.is_available
69+
# failed_when: not result.is_available
7070
7171
# You can use the registered result with another task
7272
- name: This task should be executed only if the server is available

plugins/modules/postgresql_set.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@
133133
community.postgresql.postgresql_set:
134134
name: TimeZone
135135
value: 'Europe/Paris'
136-
137136
'''
138137

139138
RETURN = r'''

plugins/modules/postgresql_user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@
242242
# password: SCRAM-SHA-256$4096:zFuajwIVdli9mK=NJkcv1Q++$JC4gWIrEHmF6sqRbEiZw5FFW45HUPrpVzNdoM72o730+;fqA4vLN3mCZGbhcbQyvNYY7anCrUTsem1eCh/4YA94=
243243
role_attr_flags: CREATEDB,NOSUPERUSER
244244
# When using sha256-hashed password:
245-
#environment:
246-
# PGOPTIONS: "-c password_encryption=scram-sha-256"
245+
# environment:
246+
# PGOPTIONS: "-c password_encryption=scram-sha-256"
247247
248248
# This example uses the 'priv' argument which is deprecated.
249249
# You should use the 'postgresql_privs' module instead.

0 commit comments

Comments
 (0)