Browse Source

[FIX] report_xlsx - Fix lint

pull/171/head
sebalix 8 years ago
committed by Enric Tobella
parent
commit
6d37bd7b08
No known key found for this signature in database GPG Key ID: 1A2546A1B7BA2451
  1. 2
      report_xlsx/models/ir_report.py
  2. 3
      report_xlsx/report/report_xlsx.py

2
report_xlsx/models/ir_report.py

@ -2,7 +2,7 @@
# Copyright 2015 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import api, fields, models
from openerp import fields, models
class IrActionsReportXml(models.Model):

3
report_xlsx/report/report_xlsx.py

@ -2,9 +2,10 @@
# Copyright 2015 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from cStringIO import StringIO
from openerp.report.report_sxw import report_sxw
from openerp.api import Environment
from cStringIO import StringIO
import logging
_logger = logging.getLogger(__name__)

Loading…
Cancel
Save