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

@ -27,8 +27,8 @@ class Assessor
end
end
def translate_linter(result)
@testing_framework_adapter.translate_linter(result)
def translate_linter(result, locale)
@testing_framework_adapter.translate_linter(result, locale)
end
class Error < RuntimeError; end