Skip to content

Commit

Permalink
[FIX] bpost_address_validation: fix headers
Browse files Browse the repository at this point in the history
  • Loading branch information
kouffsamuel committed May 19, 2023
1 parent 1add458 commit 40f128c
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions l10n_be_bpost_address_validation/models/bpost_address.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).


class BpostAddress:
Expand Down
5 changes: 3 additions & 2 deletions l10n_be_bpost_address_validation/models/res_partner.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from odoo import _, api, fields, models

# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import _, api, fields, models


class ResPartner(models.Model):
Expand Down
1 change: 0 additions & 1 deletion l10n_be_bpost_address_validation/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# Copyright 2023 ACSONE SA/NV
from . import test_bpost_address_validation_wizard
from . import test_res_partner
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

import responses

from odoo.tests.common import TransactionCase
Expand Down
3 changes: 3 additions & 0 deletions l10n_be_bpost_address_validation/tests/test_res_partner.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo.tests.common import TransactionCase


Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

import requests

from odoo import _, api, fields, models
from odoo.exceptions import UserError

from ..models.bpost_address import BpostAddress

# Copyright 2023 ACSONE SA/NV


class BpostAddressValidationWizard(models.TransientModel):
_name = "bpost.address.validation.wizard"
Expand Down

0 comments on commit 40f128c

Please sign in to comment.