From 567d32443b93fe9391b135923970c1e12c08284d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roc=C3=ADo=20Vega?= Date: Mon, 23 Feb 2026 12:19:31 -0300 Subject: [PATCH] [FIX] account_payment_pro_receiptbook: update uninstall_hook to use env parameter --- account_payment_pro_receiptbook/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_payment_pro_receiptbook/hooks.py b/account_payment_pro_receiptbook/hooks.py index 2219a58b1..4e736bda1 100644 --- a/account_payment_pro_receiptbook/hooks.py +++ b/account_payment_pro_receiptbook/hooks.py @@ -7,5 +7,5 @@ def _revert_method(cls, name): setattr(cls, name, method.origin) -def uninstall_hook(cr, registry): +def uninstall_hook(env): _revert_method(ReSequenceWizard, "default_get")