Browse Source

[FIX] pylint

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

3
barcodes/__init__.py

@ -1,6 +1,9 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2004-Today Odoo S.A.
# License LGPLv3 (https://github.com/odoo/odoo/blob/9.0/LICENSE).
# flake8: noqa
# pylint: skip-file
# pylint: disable-all
import barcodes

3
barcodes/__openerp__.py

@ -1,6 +1,9 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2004-Today Odoo S.A.
# License LGPLv3 (https://github.com/odoo/odoo/blob/9.0/LICENSE).
# flake8: noqa
# pylint: skip-file
# pylint: disable-all
{
'name': 'Barcodes',

3
barcodes/barcodes.py

@ -1,6 +1,9 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2004-Today Odoo S.A.
# License LGPLv3 (https://github.com/odoo/odoo/blob/9.0/LICENSE).
# flake8: noqa
# pylint: skip-file
# pylint: disable-all
import logging
import re

3
barcodes/models/barcode_events_mixin.py

@ -1,6 +1,9 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2004-Today Odoo S.A.
# License LGPLv3 (https://github.com/odoo/odoo/blob/9.0/LICENSE).
# flake8: noqa
# pylint: skip-file
# pylint: disable-all
from openerp import models, fields, api

Loading…
Cancel
Save