Commit e36db7e2 authored by Jérome Perrin's avatar Jérome Perrin

pylint: disable unspecified-encoding globally

parent 83b8fe89
...@@ -558,6 +558,8 @@ def checkPythonSourceCode(source_code_str, portal_type=None): ...@@ -558,6 +558,8 @@ def checkPythonSourceCode(source_code_str, portal_type=None):
"--msg-template='{C}: {line},{column}: {msg} ({symbol})'", "--msg-template='{C}: {line},{column}: {msg} ({symbol})'",
# BBB until we drop compatibility with PY2 # BBB until we drop compatibility with PY2
"--disable=redundant-u-string-prefix,raise-missing-from,keyword-arg-before-vararg", "--disable=redundant-u-string-prefix,raise-missing-from,keyword-arg-before-vararg",
# XXX acceptable to ignore in the context of ERP5
"--disable=unspecified-encoding",
) )
) )
if portal_type == 'Interface Component': if portal_type == 'Interface Component':
......
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