diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c2c8f435a..ef6a77bed 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,7 +19,8 @@ exclude: | # Ignore test files in addons /tests/samples/.*| # You don't usually want a bot to modify your legal texts - (LICENSE.*|COPYING.*) + (LICENSE.*|COPYING.*)| + ^connector/doc/ default_language_version: python: python3 node: "14.18.0" diff --git a/connector/tests/test_mapper.py b/connector/tests/test_mapper.py index c0323949e..0c5aaeab1 100644 --- a/connector/tests/test_mapper.py +++ b/connector/tests/test_mapper.py @@ -156,7 +156,9 @@ def name(self): pass class FryMapperInherit(Component): - _inherit = "fry.mapper" + _inherit = ( # pylint: disable=consider-merging-classes-inherited + "fry.mapper" + ) _apply_on = "res.users" @changed_by("email")