[CLN] global : clean lint errors

This commit is contained in:
jscampucci
2025-09-15 14:13:26 +02:00
parent 174aabfbbb
commit d3b2cdd286
5 changed files with 11 additions and 23 deletions

View File

@@ -6,10 +6,10 @@ class EventTrack(models.Model):
_inherit = "event.track"
speaker_ids = fields.Many2many(
"res.partner", string="Intervenants", compute="compute_speaker_ids"
"res.partner", string="Intervenants", compute="_compute_speaker_ids"
)
def compute_speaker_ids(self):
def _compute_speaker_ids(self):
"""
Set speaker_ids as concat of all speakers of all events.
"""