Skip to content

Commit dfd0271

Browse files
committed
[FIX]Fixups suggested in PR #1
1 parent a4548c1 commit dfd0271

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

mass_merge/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
# OpenERP, Open Source Management Solution
32
# Copyright (C) 2012 Serpent Consulting Services (<http://www.serpentcs.com>)
43
# Copyright (C) 2010-Today OpenERP SA (<http://www.openerp.com>)

mass_merge/models/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from . import merge_editing
42
from . import record_merge_mixin
53
from . import record_merge_id

mass_merge/models/base_merge_model.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# -*- coding: utf-8 -*-
2-
# © 2020 Therp BV <https://therp.nl>
2+
# Copyright 2020 Therp BV <https://therp.nl>
33
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
44
from odoo import _, api, fields, models
55

6-
7-
# This class holds configuration about which models
8-
# are allowed to be merged, and which
9-
# fields are to be used to to match
6+
"""
7+
This class holds configuration about which models are allowed to be merged,
8+
and which fields are to be used to to match
9+
"""
1010
class BaseMergeModel(models.Model):
1111

1212
_name = 'base.merge.model'

0 commit comments

Comments
 (0)