diff options
author | Rob Austein <sra@hactrn.net> | 2014-05-31 18:32:19 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-05-31 18:32:19 +0000 |
commit | a7cad7f4aab21d48eb783935dfabb9859bcc4f37 (patch) | |
tree | fa8ec4816cfbef4bb3edf01319fe4b7db9b3a73b /ca/tests/yamltest.py | |
parent | 61309aa7e3c4d8abb6b7e78c979c851f59a70fc4 (diff) |
Still more PyLint.
svn path=/trunk/; revision=5856
Diffstat (limited to 'ca/tests/yamltest.py')
-rw-r--r-- | ca/tests/yamltest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ca/tests/yamltest.py b/ca/tests/yamltest.py index a2390aff..1482c4e2 100644 --- a/ca/tests/yamltest.py +++ b/ca/tests/yamltest.py @@ -137,7 +137,6 @@ class router_cert(object): return self.asn == other.asn and self.router_id == other.router_id and self.gski == other.gski def __hash__(self): - v6 = tuple(self.v6) if self.v6 is not None else None return tuple(self.asn).__hash__() + self.router_id.__hash__() + self.gski.__hash__() def __str__(self): |