From 610a110f87b1df3c36f0bc4ba3f76385b2130a66 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 18 Aug 2015 17:12:08 +0200 Subject: Silence no-name-in-module error Some versions of pylint complain about six's moves magic: No name 'urllib' in module '_MovedItems' (no-name-in-module) Disable error E0611. --- base/common/python/pki/key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/python') diff --git a/base/common/python/pki/key.py b/base/common/python/pki/key.py index 83883dd31..1204be54a 100644 --- a/base/common/python/pki/key.py +++ b/base/common/python/pki/key.py @@ -30,7 +30,7 @@ import base64 import json from six import iteritems -from six.moves.urllib.parse import quote # pylint: disable=F0401 +from six.moves.urllib.parse import quote # pylint: disable=F0401,E0611 import pki import pki.encoder as encoder -- cgit