Corrections pep8
[burette/remembership.git] / remembership.py
index 260e56e..b6a6857 100644 (file)
@@ -24,6 +24,7 @@
 from osv import osv
 from osv import fields
 
 from osv import osv
 from osv import fields
 
+
 class Partner(osv.osv):
     _inherit = 'res.partner'
 
 class Partner(osv.osv):
     _inherit = 'res.partner'
 
@@ -35,7 +36,7 @@ Partner()
 
 
 class account_invoice_line(osv.osv):
 
 
 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)
 
     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()
 
 
 account_invoice_line()
 
+
 class pos_make_payment(osv.osv_memory):
     _inherit = 'pos.make.payment'
 
 class pos_make_payment(osv.osv_memory):
     _inherit = 'pos.make.payment'