From 8c9b9fce89e0b762882d0ea505551c042be30b17 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 26 Apr 2019 02:43:58 -0700 Subject: [PATCH] Move method doc to comment --- octodns/source/tinydns.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/octodns/source/tinydns.py b/octodns/source/tinydns.py index f92e41f..dc2bc1b 100755 --- a/octodns/source/tinydns.py +++ b/octodns/source/tinydns.py @@ -47,14 +47,11 @@ class TinyDnsBaseSource(BaseSource): } def _data_for_AAAA(self, _type, records): - ''' - TinyDNS files have the ipv6 address written in full, but with the - colons removed. This inserts a colon every 4th character to make - the address correct. - ''' - values = [] for record in records: + # TinyDNS files have the ipv6 address written in full, but with the + # colons removed. This inserts a colon every 4th character to make + # the address correct. values.append(u":".join(textwrap.wrap(record[0], 4))) try: ttl = records[0][1]