1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

whitespaces around operators to make /script/lint happy again

This commit is contained in:
Maikel Poot
2019-09-25 14:51:53 +02:00
parent 9cab94a83a
commit 71f215932d

View File

@@ -212,7 +212,7 @@ class TransipProvider(BaseProvider):
def _parse_to_fqdn(self, value):
# Enforce switch from suds.sax.text.Text to string
value = ''+value
value = '' + value
# TransIP allows '@' as value to alias the root record.
# this provider won't set an '@' value, but can be an existing record
@@ -237,7 +237,7 @@ class TransipProvider(BaseProvider):
_values = []
for record in records:
# Enforce switch from suds.sax.text.Text to string
_values.append(''+record['content'])
_values.append('' + record['content'])
return {
'ttl': self._get_lowest_ttl(records),