Commit fa9efcf4 authored by Michal Čihař's avatar Michal Čihař

Replace global disabling by local override

parent 560f13bb
......@@ -27,8 +27,7 @@ cache-size=500
# E1103 does not work with WSGIRequest or file objects
# R0924 Badly implemented Container, implements __getitem__ but not __delitem__, __len__, __setitem__
# W0703 Catching too general exception Exception
# W0401 Wildcard import (used massively in tests/__init__.py)
disable=C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,E1101,E1120,E1103,W0703,W0401
disable=C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,E1101,E1120,E1103,W0703
# R0924
[REPORTS]
......
......@@ -18,6 +18,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Wildcard import
# pylint: disable=W0401
from trans.tests.diff import *
from trans.tests.checks import *
from trans.tests.format_checks import *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment