From: Ludovic CHEVALIER Date: Tue, 20 Nov 2012 08:58:51 +0000 (+0100) Subject: Corrections pep8 X-Git-Url: https://git.heureux-cyclage.org/?p=burette%2Fremembership.git;a=commitdiff_plain;h=6c5c3c805641b3542548dc6776ffad2d3eb4ee55;hp=a8b8dd5c849171c2a3583fa5d9069bb551cb4780 Corrections pep8 --- diff --git a/remembership.py b/remembership.py index 260e56e..b6a6857 100644 --- a/remembership.py +++ b/remembership.py @@ -24,6 +24,7 @@ from osv import osv from osv import fields + class Partner(osv.osv): _inherit = 'res.partner' @@ -35,7 +36,7 @@ Partner() class account_invoice_line(osv.osv): - _inherit='account.invoice.line' + _inherit = 'account.invoice.line' def create(self, cr, uid, vals, context=None): res = super(account_invoice_line, self).create(cr, uid, vals, context=context) @@ -48,6 +49,7 @@ class account_invoice_line(osv.osv): account_invoice_line() + class pos_make_payment(osv.osv_memory): _inherit = 'pos.make.payment'