Browse Source

whitespaces around operators to make /script/lint happy again

pull/405/head
Maikel Poot 6 years ago
parent
commit
71f215932d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      octodns/provider/transip.py

+ 2
- 2
octodns/provider/transip.py 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),


Loading…
Cancel
Save