diff --git a/src/accounting/models.py b/src/accounting/models.py index ad38bd6..0362b5c 100644 --- a/src/accounting/models.py +++ b/src/accounting/models.py @@ -187,8 +187,7 @@ class Account(db.Model): if l10n.locale == current_locale: l10n.title = value return - self.l10n.append(AccountL10n( - locale=current_locale, title=value)) + self.l10n.append(AccountL10n(locale=current_locale, title=value)) @classmethod def find_by_code(cls, code: str) -> t.Self | None: