mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
[IMP] orm/all: Make _name or _inherit mandatory
This is a request following the revert of the use of class names
(concerning the python inheritance and typing project)
closes odoo/design-themes#1040
X-original-commit: 2263661435
Related: odoo/odoo#191963
Related: odoo/enterprise#76269
Signed-off-by: Raphael Collet <rco@odoo.com>
This commit is contained in:
@@ -2,7 +2,7 @@ from odoo import models
|
||||
|
||||
|
||||
class ThemeUtils(models.AbstractModel):
|
||||
_inherit = ['theme.utils']
|
||||
_inherit = 'theme.utils'
|
||||
|
||||
def _theme_yes_post_copy(self, mod):
|
||||
self.enable_view('website.template_footer_descriptive')
|
||||
|
||||
Reference in New Issue
Block a user