Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-02-12 11:47:17 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-02-25 16:56:47 +0300
commit0b8767f990e058a56bf2ebc2cece535df4f5cfc9 (patch)
tree7fba2fde210c9cd9fe2f3764b90475c6e2753485 /linter_plugin.py
parent52257c4d6b1bad063fe75a14a45cbbad4bf416ca (diff)
Catch-all __slots__ linter_plugin
Diffstat (limited to 'linter_plugin.py')
-rw-r--r--linter_plugin.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/linter_plugin.py b/linter_plugin.py
index d5faf33ac..ac2a01f6d 100644
--- a/linter_plugin.py
+++ b/linter_plugin.py
@@ -14,8 +14,10 @@ def _transform(cls):
# fix the "no-member" error on instances of
# letsencrypt.acme.util.ImmutableMap subclasses (instance
# attributes are initialized dynamically based on __slots__)
- if (('Message' in cls.basenames or 'ImmutableMap' in cls.basenames or
- 'util.ImmutableMap' in cls.basenames) and (cls.slots() is not None)):
+
+ # TODO: this is too broad and applies to any tested class...
+
+ if cls.slots() is not None:
for slot in cls.slots():
cls.locals[slot.value] = [nodes.EmptyNode()]