pylint: Enable overlapping_exceptions

It was moved to a pylint extension because it makes no sense for polyglot
Python 2/3 code, but we're not doing that.
This commit is contained in:
Florian Bruhin 2019-10-01 12:38:09 +02:00
parent c9386b753a
commit 24eaecdd09
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ load-plugins=qute_pylint.config,
pylint.extensions.docstyle,
pylint.extensions.emptystring,
pylint.extensions.broad_try_clause,
pylint.extensions.overlapping_exceptions
persistent=n
[broad_try_clause]