You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ADD] string-method-name: Add string-method-name check to preserve inheritability
Bad
name = fields.Char(
compute=_compute_name,
search=_search_name,
inverse=_inverse_name,
)
Good
name = fields.Char(
compute="_compute_name",
search="_search_name",
inverse="_inverse_name",
)
FixOCA/odoo-pre-commit-hooks#126
0 commit comments