Browse Source

[FIX] skip pylint issues

pull/150/head
Sylvain LE GAL 7 years ago
parent
commit
1490bbe9b5
  1. 3
      barcodes/__openerp__.py
  2. 1
      barcodes/barcodes.py
  3. 1
      barcodes/models/barcode_events_mixin.py

3
barcodes/__openerp__.py

@ -2,10 +2,11 @@
# Copyright (C) 2004-Today Odoo S.A.
# License LGPLv3 (https://github.com/odoo/odoo/blob/9.0/LICENSE).
# flake8: noqa
# pylint: skip-file
{
'name': 'Barcodes',
'version': '2.0',
'version': '8.0.2.0.0',
'category': 'Extra Tools',
'summary': 'Barcodes Scanning and Parsing',
'description': """

1
barcodes/barcodes.py

@ -2,6 +2,7 @@
# Copyright (C) 2004-Today Odoo S.A.
# License LGPLv3 (https://github.com/odoo/odoo/blob/9.0/LICENSE).
# flake8: noqa
# pylint: skip-file
import logging
import re

1
barcodes/models/barcode_events_mixin.py

@ -2,6 +2,7 @@
# Copyright (C) 2004-Today Odoo S.A.
# License LGPLv3 (https://github.com/odoo/odoo/blob/9.0/LICENSE).
# flake8: noqa
# pylint: skip-file
from openerp import models, fields, api

Loading…
Cancel
Save