Corrections pep8
authorLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Tue, 20 Nov 2012 08:58:51 +0000 (09:58 +0100)
committerLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Tue, 20 Nov 2012 08:58:51 +0000 (09:58 +0100)
remembership.py

index 260e56e..b6a6857 100644 (file)
@@ -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'