Browse Source

[ADD] Fix coding and lint error

pull/348/head
aschenkels-ictstudio 8 years ago
parent
commit
bd43e65e42
  1. 22
      partner_company_registry/__init__.py
  2. 22
      partner_company_registry/__openerp__.py
  3. 22
      partner_company_registry/models/__init__.py
  4. 22
      partner_company_registry/models/res_partner.py

22
partner_company_registry/__init__.py

@ -1,20 +1,4 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2015 ICTSTUDIO (<http://www.ictstudio.eu>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# -*- coding: utf-8 -*-
# Copyright© 2016 ICTSTUDIO <http://www.ictstudio.eu>
# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
from . import models

22
partner_company_registry/__openerp__.py

@ -1,22 +1,6 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2015 ICTSTUDIO (<http://www.ictstudio.eu>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# -*- coding: utf-8 -*-
# Copyright© 2016 ICTSTUDIO <http://www.ictstudio.eu>
# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
{
'name': 'Partner Company Registry',
'version': '8.0.1.0.0',

22
partner_company_registry/models/__init__.py

@ -1,20 +1,4 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2015 ICTSTUDIO (<http://www.ictstudio.eu>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# -*- coding: utf-8 -*-
# Copyright© 2016 ICTSTUDIO <http://www.ictstudio.eu>
# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
from . import res_partner

22
partner_company_registry/models/res_partner.py

@ -1,22 +1,6 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2015 ICTSTUDIO (<http://www.ictstudio.eu>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# -*- coding: utf-8 -*-
# Copyright© 2016 ICTSTUDIO <http://www.ictstudio.eu>
# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
from openerp import models, fields, api, _
import logging

Loading…
Cancel
Save