From c17796c467ed743375bd4fb8c20e77b5641d87ba Mon Sep 17 00:00:00 2001 From: ndparker Date: Sun, 9 Feb 2014 15:12:06 +0100 Subject: [PATCH] silence pylint. --- rjsmin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rjsmin.py b/rjsmin.py index 2d88a01..ab680f6 100755 --- a/rjsmin.py +++ b/rjsmin.py @@ -60,7 +60,9 @@ Both python 2 and python 3 are supported. .. _jsmin.c by Douglas Crockford: http://www.crockford.com/javascript/jsmin.c """ -__doc__ = getattr(__doc__, 'decode', lambda x: __doc__)('latin-1') +if 1: + # pylint: disable = W0622 + __doc__ = getattr(__doc__, 'decode', lambda x: __doc__)('latin-1') __author__ = "Andr\xe9 Malo" __author__ = getattr(__author__, 'decode', lambda x: __author__)('latin-1') __docformat__ = "restructuredtext en"