diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2017-04-13 14:01:08 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2017-04-13 14:01:08 +0300 |
commit | 3e693a2837b263e411ab223057f5fa0f9b4ef531 (patch) | |
tree | bf96926eb230eedc06150e54e40e2ba35b0e5d7a /pylint | |
parent | 7320a8f8693dc34aea061ed2ecb98cf5623c81f9 (diff) | |
download | pylint-git-3e693a2837b263e411ab223057f5fa0f9b4ef531.tar.gz |
Fix lint
Diffstat (limited to 'pylint')
-rw-r--r-- | pylint/checkers/typecheck.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py index 5ad064b9a..ece6ebd76 100644 --- a/pylint/checkers/typecheck.py +++ b/pylint/checkers/typecheck.py @@ -483,8 +483,8 @@ class TypeChecker(BaseChecker): 'but some branches might not be evaluated, which results in ' 'partial inference. In that case, it might be useful to still emit ' 'no-member and other checks for the rest of the inferred objects.'} - ), - ('ignore-mixin-members', + ), + ('ignore-mixin-members', {'default' : True, 'type' : 'yn', 'metavar': '<y_or_n>', 'help' : 'Tells whether missing members accessed in mixin \ class should be ignored. A mixin class is detected if its name ends with \ |