[IMP] account_financial_report: black, isort

This commit is contained in:
Ernesto Tejeda
2020-03-23 11:14:52 -04:00
committed by chaule97
parent 1227d53d4f
commit 40c874a112
57 changed files with 7565 additions and 6087 deletions

View File

@@ -1,13 +1,14 @@
# ?? 2011 Guewen Baconnier (Camptocamp)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-
from odoo import models, fields
from odoo import fields, models
class AccountAccount(models.Model):
_inherit = 'account.account'
_inherit = "account.account"
centralized = fields.Boolean(
'Centralized',
"Centralized",
help="If flagged, no details will be displayed in "
"the General Ledger report (the webkit one only), "
"only centralized amounts per period.")
"the General Ledger report (the webkit one only), "
"only centralized amounts per period.",
)