1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

try more linting

This commit is contained in:
fkuep 2021-03-31 01:52:41 +02:00
parent 87eeec7180
commit 91c8d06e6a

View file

@ -138,9 +138,9 @@ class LookupModule(LookupBase):
if u.port is not None:
port = u.port
token = self.get_option('token')
datacenter=self.get_option('datacenter')
recurse=self.get_option('recurse')
index=self.get_option('index')
datacenter = self.get_option('datacenter')
recurse = self.get_option('recurse')
index = self.get_option('index')
validate_certs = self.get_option('validate_certs')
client_cert = self.get_option('client_cert')
@ -150,7 +150,7 @@ class LookupModule(LookupBase):
for term in terms:
key = term.split(' ')[0]
consul_api = consul.Consul(host=host, port=port, scheme=scheme, token=token,
dc=datacenter,verify=validate_certs, cert=client_cert)
dc=datacenter, verify=validate_certs, cert=client_cert)
results = consul_api.kv.get(key,
index=index,