From: Bob Halley Date: Sat, 1 Dec 2018 15:44:25 +0000 (-0800) Subject: disable spurious pylint errors for python 2.7 X-Git-Tag: v1.16.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5991b0a6b573392f2ea2191264a4eef493c20582;p=thirdparty%2Fdnspython.git disable spurious pylint errors for python 2.7 --- diff --git a/tests/test_name.py b/tests/test_name.py index 0972972a..d5d929c9 100644 --- a/tests/test_name.py +++ b/tests/test_name.py @@ -27,7 +27,7 @@ import dns.name import dns.reversename import dns.e164 -# pylint: disable=line-too-long,unsupported-assignment-operation +# pylint: disable=line-too-long,unsupported-assignment-operation,invalid-encoded-data class NameTestCase(unittest.TestCase):