diff options
| author | Bob Halley <halley@dnspython.org> | 2020-07-31 16:03:09 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-07-31 16:03:09 -0700 |
| commit | 049eedd8ab25f211d0fcd88726098327cc27ddb2 (patch) | |
| tree | 0b79e3da4f29d4d85a4eddac0e2879925c49dc7b /dns/ipv6.py | |
| parent | 96429bc53f2912fc8065439c7adac83a87ef806b (diff) | |
| download | dnspython-049eedd8ab25f211d0fcd88726098327cc27ddb2.tar.gz | |
pylint linting
Diffstat (limited to 'dns/ipv6.py')
| -rw-r--r-- | dns/ipv6.py | 2 |
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) |
