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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user