Skip to content

Commit

Permalink
[IMP] partner_industry_secondary: black, isort, prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mmrondon committed Mar 7, 2024
1 parent 5e8a213 commit 71dae68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion partner_industry_secondary/models/res_partner_industry.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ResPartnerIndustry(models.Model):
)
parent_path = fields.Char(index=True, unaccent=False)

@api.depends('name', 'parent_id')
@api.depends("name", "parent_id")
def _compute_display_name(self):
for rec in self:
if rec.parent_id:
Expand Down

0 comments on commit 71dae68

Please sign in to comment.