diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-11-19 09:50:28 +0100 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-11-19 09:50:28 +0100 |
commit | 51af5e9c258e66445366309c89c55d6db464af53 (patch) | |
tree | f3a684773bfd24426ab903137a341dbf03a3f4a3 /pyreverse/utils.py | |
parent | 9904ce2f5f81cc4b4175d8cd322ee376c91b2f18 (diff) | |
download | pylint-51af5e9c258e66445366309c89c55d6db464af53.tar.gz |
pylint pylint
Diffstat (limited to 'pyreverse/utils.py')
-rw-r--r-- | pyreverse/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyreverse/utils.py b/pyreverse/utils.py index 58559d7..5d6d133 100644 --- a/pyreverse/utils.py +++ b/pyreverse/utils.py @@ -128,5 +128,5 @@ class FilterMixIn(object): """return true if the node should be treated """ visibility = get_visibility(getattr(node, 'name', node)) - return not (self.__mode & VIS_MOD[visibility]) + return not self.__mode & VIS_MOD[visibility] |