From 6c5c3c805641b3542548dc6776ffad2d3eb4ee55 Mon Sep 17 00:00:00 2001 From: Ludovic CHEVALIER Date: Tue, 20 Nov 2012 09:58:51 +0100 Subject: [PATCH] Corrections pep8 --- remembership.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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' -- 2.20.1