From 5b8fc77817463b99dc84ceabd8d6d1818aed090f Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sat, 31 Aug 2019 02:15:16 +0200 Subject: [PATCH] [FIX] pos_autoreconcile: Avoid pylint error --- pos_autoreconcile/model/point_of_sale.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pos_autoreconcile/model/point_of_sale.py b/pos_autoreconcile/model/point_of_sale.py index 58a5d7a9..79434e7e 100644 --- a/pos_autoreconcile/model/point_of_sale.py +++ b/pos_autoreconcile/model/point_of_sale.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution @@ -26,6 +26,7 @@ from openerp import models class POSOrder(models.Model): _inherit = "pos.order" + # pylint: disable=R8110 def _create_account_move_line(self, cr, uid, ids, session=None, move_id=None, context=None): to_ret = super(POSOrder, self)._create_account_move_line(