summaryrefslogtreecommitdiff
path: root/tests/test_bugs.py
diff options
context:
space:
mode:
authorMartin <martin.basti@gmail.com>2016-08-02 23:26:49 +0200
committerMartin <martin.basti@gmail.com>2016-08-31 21:50:37 +0200
commitab91796060192ef4694b09cca2f10108bd6ba949 (patch)
tree003abfe61461d97abf0fa58b9a92fc58e5ffd63b /tests/test_bugs.py
parent42c6844e06be5abfe3e07e5e47be0ad68cac9fe0 (diff)
downloaddnspython-ab91796060192ef4694b09cca2f10108bd6ba949.tar.gz
Pylint: remove unused variables
This commit removes some unused variables (except those in iterations, list comprehensions and used for unpacking)
Diffstat (limited to 'tests/test_bugs.py')
-rw-r--r--tests/test_bugs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_bugs.py b/tests/test_bugs.py
index 30f1dae..d26d85b 100644
--- a/tests/test_bugs.py
+++ b/tests/test_bugs.py
@@ -41,7 +41,7 @@ class BugsTestCase(unittest.TestCase):
def test_TTL_bounds_check(self):
def bad():
- ttl = dns.ttl.from_text("2147483648")
+ dns.ttl.from_text("2147483648")
self.failUnlessRaises(dns.ttl.BadTTL, bad)
def test_empty_NSEC3_window(self):