From 8312cc196b6c311764aeadabb94d645e7b1490ce Mon Sep 17 00:00:00 2001 From: Guillaume Auger Date: Fri, 30 Jan 2015 17:07:58 -0500 Subject: [PATCH] Pep8 --- .../wizard/account_report_chart_of_account.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/account_chart_report/wizard/account_report_chart_of_account.py b/account_chart_report/wizard/account_report_chart_of_account.py index 8e29813c..4907b738 100644 --- a/account_chart_report/wizard/account_report_chart_of_account.py +++ b/account_chart_report/wizard/account_report_chart_of_account.py @@ -27,11 +27,12 @@ class ChartOfAccountsReport(models.TransientModel): _name = 'account.print.chart.accounts.report' _description = 'Chart of accounts Report' - chart_account_id = fields.Many2one('account.account', - 'Chart of Accounts', - help='Select Charts of Accounts', - required=True, - domain=([('parent_id', '=', False)])) + chart_account_id = fields.Many2one( + 'account.account', + 'Chart of Accounts', + help='Select Charts of Accounts', + required=True, + domain=([('parent_id', '=', False)])) @api.multi def print_report(self, data):