From bd43e65e424c99a0773219d0fcba7e7b24394788 Mon Sep 17 00:00:00 2001 From: aschenkels-ictstudio Date: Fri, 2 Dec 2016 14:12:49 +0100 Subject: [PATCH] [ADD] Fix coding and lint error --- partner_company_registry/__init__.py | 22 +++---------------- partner_company_registry/__openerp__.py | 22 +++---------------- partner_company_registry/models/__init__.py | 22 +++---------------- .../models/res_partner.py | 22 +++---------------- 4 files changed, 12 insertions(+), 76 deletions(-) diff --git a/partner_company_registry/__init__.py b/partner_company_registry/__init__.py index 4c64f8784..cccb29935 100755 --- a/partner_company_registry/__init__.py +++ b/partner_company_registry/__init__.py @@ -1,20 +1,4 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2015 ICTSTUDIO (). -# -# 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 . -# -############################################################################## +# -*- coding: utf-8 -*- +# Copyright© 2016 ICTSTUDIO +# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) from . import models diff --git a/partner_company_registry/__openerp__.py b/partner_company_registry/__openerp__.py index fdb353619..818246f92 100755 --- a/partner_company_registry/__openerp__.py +++ b/partner_company_registry/__openerp__.py @@ -1,22 +1,6 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2015 ICTSTUDIO (). -# -# 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 . -# -############################################################################## +# -*- coding: utf-8 -*- +# Copyright© 2016 ICTSTUDIO +# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) { 'name': 'Partner Company Registry', 'version': '8.0.1.0.0', diff --git a/partner_company_registry/models/__init__.py b/partner_company_registry/models/__init__.py index 8c270dae7..b683390c9 100755 --- a/partner_company_registry/models/__init__.py +++ b/partner_company_registry/models/__init__.py @@ -1,20 +1,4 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2015 ICTSTUDIO (). -# -# 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 . -# -############################################################################## +# -*- coding: utf-8 -*- +# Copyright© 2016 ICTSTUDIO +# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) from . import res_partner \ No newline at end of file diff --git a/partner_company_registry/models/res_partner.py b/partner_company_registry/models/res_partner.py index 166bf9067..b21409049 100755 --- a/partner_company_registry/models/res_partner.py +++ b/partner_company_registry/models/res_partner.py @@ -1,22 +1,6 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2015 ICTSTUDIO (). -# -# 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 . -# -############################################################################## +# -*- coding: utf-8 -*- +# Copyright© 2016 ICTSTUDIO +# License: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) from openerp import models, fields, api, _ import logging