From 8eaf422c5710bb1dc84435d8a3b100d952ffb9ae Mon Sep 17 00:00:00 2001 From: Jordi Ballester Date: Thu, 12 May 2022 17:12:12 +0200 Subject: [PATCH] fix pylint --- .../tests/test_account_move_line_rma_order_line.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py b/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py index 766c1ba4..8b442258 100644 --- a/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py +++ b/account_move_line_rma_order_line/tests/test_account_move_line_rma_order_line.py @@ -82,9 +82,9 @@ class TestAccountMoveLineRmaOrderLine(common.SavepointCase): return user.id @classmethod - def _create_account_type(cls, name, type, internal_group): + def _create_account_type(cls, name, account_type, internal_group): acc_type = cls.acc_type_model.create( - {"name": name, "type": type, "internal_group": internal_group} + {"name": name, "type": account_type, "internal_group": internal_group} ) return acc_type