Skip to content

Commit

Permalink
[FIX] cooperator_portal: Add args to __init__
Browse files Browse the repository at this point in the history
Signed-off-by: Carmen Bianca BAKKER <[email protected]>
  • Loading branch information
carmenbianca committed Jun 11, 2024
1 parent d42d27c commit b56398f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cooperator_portal/controllers/portal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit b56398f

Please sign in to comment.