summaryrefslogtreecommitdiff
path: root/dns/ipv6.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-07-31 16:03:09 -0700
committerBob Halley <halley@dnspython.org>2020-07-31 16:03:09 -0700
commit049eedd8ab25f211d0fcd88726098327cc27ddb2 (patch)
tree0b79e3da4f29d4d85a4eddac0e2879925c49dc7b /dns/ipv6.py
parent96429bc53f2912fc8065439c7adac83a87ef806b (diff)
downloaddnspython-049eedd8ab25f211d0fcd88726098327cc27ddb2.tar.gz
pylint linting
Diffstat (limited to 'dns/ipv6.py')
-rw-r--r--dns/ipv6.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/ipv6.py b/dns/ipv6.py
index 5424fce..0905aaf 100644
--- a/dns/ipv6.py
+++ b/dns/ipv6.py
@@ -157,7 +157,7 @@ def inet_aton(text, ignore_scope=False):
if seen_empty:
raise dns.exception.SyntaxError
seen_empty = True
- for i in range(0, 8 - l + 1):
+ for _ in range(0, 8 - l + 1):
canonical.append(b'0000')
else:
lc = len(c)