Pass locale to PyLint translator and allow switchable output

This commit is contained in:
Sebastian Serth
2021-01-20 22:41:49 +01:00
parent d791f99dee
commit ae47913ca8
4 changed files with 11 additions and 9 deletions

View File

@ -12,7 +12,7 @@ class PyUnitAndPyLintAdapter < TestingFrameworkAdapter
end
end
def translate_linter(result)
PyLintAdapter.translate_linter(result)
def translate_linter(result, locale)
PyLintAdapter.translate_linter(result, locale)
end
end