From b56398f01ed2a81fa7ca20ac80d13619a7d8afa6 Mon Sep 17 00:00:00 2001 From: Carmen Bianca BAKKER Date: Tue, 11 Jun 2024 11:57:37 +0200 Subject: [PATCH] [FIX] cooperator_portal: Add args to __init__ Signed-off-by: Carmen Bianca BAKKER --- cooperator_portal/controllers/portal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cooperator_portal/controllers/portal.py b/cooperator_portal/controllers/portal.py index bc7a4252a..3f4fafbc9 100644 --- a/cooperator_portal/controllers/portal.py +++ b/cooperator_portal/controllers/portal.py @@ -14,7 +14,7 @@ class CooperatorPortal(PortalAccount): def __init__(self, *args, **kwargs): - super().__init__() + super().__init__(*args, **kwargs) # Class scope is accessible throughout the server even on # odoo instances that do not install this module.