[PEP8] and correction of doc string

This commit is contained in:
Nicolas Bessi
2014-01-31 12:09:04 +01:00
parent 50c3f45a5a
commit 7d4f9a77cb
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,6 @@
##############################################################################
from openerp.osv import orm, fields
class AssembledReport(orm.Model):
_name = 'assembled.report'
@@ -38,5 +37,6 @@ class AssembledReport(orm.Model):
_defaults = {
'sequence': 1,
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'assembled.report', context=c)
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(
cr, uid, 'assembled.report', context=c)
}

View File

@@ -56,7 +56,7 @@ def assemble_pdf(pdf_list):
class PDFReportAssembler(report_sxw.report_sxw):
""" PDFReportAssembler allows to put 2 invoice reports in one single pdf"""
""" PDFReportAssembler allows to put 2 pdf reports in one single pdf"""
def _generate_all_pdf(self, cr, uid, ids, data, report_ids, context=None):
"""