mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Coding guidelines were not PEP8 compliant :-) (#25589)
This commit is contained in:
parent
e017bf964e
commit
f380fd84c5
1 changed files with 12 additions and 16 deletions
|
@ -102,10 +102,10 @@ Use the dict constructor where possible when allocating dictionaries:
|
|||
# this:
|
||||
foo = dict(
|
||||
a=12,
|
||||
b = 34
|
||||
b=34,
|
||||
)
|
||||
|
||||
Line up variables
|
||||
Do not line up variables
|
||||
|
||||
# not this
|
||||
a = 12
|
||||
|
@ -314,7 +314,3 @@ This was not meant to be a scary document, so we hope it wasn't, but we also hop
|
|||
If you have questions about this document, please ask on the ansible-devel mailing list.
|
||||
|
||||
Thank you!
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue