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

Silent some pylint warnings

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 34db74dd
......@@ -50,7 +50,8 @@ load-plugins=pylint_django
# E1002 Produces lot of false positives with Django 1.5
# R0401(cyclic-import) we have too many of them
# C0411(wrong-import-order) should be probably fixed
disable=C0111,I0011,W0142,W0613,W0703,R0201,E1103,E1101,R0401,R0921,R0922,E1002,C0411
# W0122(exec-used) exec is used in openshift
disable=C0111,I0011,W0142,W0613,W0703,R0201,E1103,E1101,R0401,R0921,R0922,E1002,C0411,W0122
[REPORTS]
......
......@@ -27,6 +27,7 @@ from django.contrib import messages
from django.core.cache import cache
import traceback
import multiprocessing
# pylint: disable=W0622
from functools import reduce
from weblate.trans.checks import CHECKS
from weblate.trans.models.source import Source
......
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