mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
minor personal style preference on 'not'
This commit is contained in:
parent
bee0e8db5b
commit
40f5469869
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ def parse_yaml_from_file(path):
|
||||||
def parse_kv(args):
|
def parse_kv(args):
|
||||||
''' convert a string of key/value items to a dict '''
|
''' convert a string of key/value items to a dict '''
|
||||||
options = {}
|
options = {}
|
||||||
if not args is None:
|
if args is not None:
|
||||||
vargs = shlex.split(args, posix=True)
|
vargs = shlex.split(args, posix=True)
|
||||||
for x in vargs:
|
for x in vargs:
|
||||||
if x.find("=") != -1:
|
if x.find("=") != -1:
|
||||||
|
|
Loading…
Reference in a new issue