fix pylint

This commit is contained in:
Jordi Ballester
2022-05-12 17:12:12 +02:00
parent 242fb093cb
commit 8eaf422c57

View File

@@ -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