diff options
author | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2017-12-17 21:34:48 +0100 |
---|---|---|
committer | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2017-12-17 21:34:48 +0100 |
commit | 2e8caa6fd5417cba2ebc6c45ebb9983623ca8ca8 (patch) | |
tree | 0eb9a9db69fe0a9e4f289046d3c2103a1585f6d4 | |
parent | f51beb183c9d83a248a04cca9f2c85b0c07e50a7 (diff) | |
download | ranger-2e8caa6fd5417cba2ebc6c45ebb9983623ca8ca8.tar.gz |
Pylint: Disable the stop-iteration-return check
I'm not sure if the suggested solution is portable between Python 2 and 3, so I'm disabling it for now.
-rw-r--r-- | .pylintrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc index d108c93f..75bb7baf 100644 --- a/.pylintrc +++ b/.pylintrc @@ -8,7 +8,7 @@ max-branches=16 [FORMAT] max-line-length = 99 -disable=locally-disabled,locally-enabled,missing-docstring,duplicate-code,fixme,cyclic-import,redefined-variable-type +disable=locally-disabled,locally-enabled,missing-docstring,duplicate-code,fixme,cyclic-import,redefined-variable-type,stop-iteration-return [TYPECHECK] ignored-classes=ranger.core.actions.Actions |