From 6101ff7edc25a40ae0509403d86ed25028a5db13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= Date: Tue, 22 Nov 2022 16:37:13 +0100 Subject: [PATCH] [IMP] account_move_reconcile_forbid_cancel: black, isort, prettier --- .../tests/test_account_move_reconcile_forbid_cancel.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/account_move_reconcile_forbid_cancel/tests/test_account_move_reconcile_forbid_cancel.py b/account_move_reconcile_forbid_cancel/tests/test_account_move_reconcile_forbid_cancel.py index 2818bca4..eeb69cf1 100644 --- a/account_move_reconcile_forbid_cancel/tests/test_account_move_reconcile_forbid_cancel.py +++ b/account_move_reconcile_forbid_cancel/tests/test_account_move_reconcile_forbid_cancel.py @@ -106,7 +106,8 @@ class TestAccountMoveReconcileForbidCancel(SavepointCase): # Create payment from invoice payment_register_form = Form( cls.env["account.payment"].with_context( - active_model="account.move", active_ids=cls.purchase_invoice.ids, + active_model="account.move", + active_ids=cls.purchase_invoice.ids, ) ) payment = payment_register_form.save() @@ -125,7 +126,8 @@ class TestAccountMoveReconcileForbidCancel(SavepointCase): # Create payment from invoice payment_register_form = Form( cls.env["account.payment"].with_context( - active_model="account.move", active_ids=cls.sale_invoice.ids, + active_model="account.move", + active_ids=cls.sale_invoice.ids, ) ) payment = payment_register_form.save()