Commit 39bb7bb0 authored by Luca Cristaldi's avatar Luca Cristaldi
Browse files

Fix __all__ and change name to some xml files/tag

parent cbb6a156
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
# This file is part of Tryton.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

from trytond.pool import Pool
from . import account
from . import member
+0 −1
Original line number Diff line number Diff line
# This file is part of Tryton.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

from trytond.model import ModelView, ModelSQL, ModelSingleton, fields
from trytond.pyson import Eval
from trytond.modules.company.model import (CompanyMultiValueMixin,
+0 −1
Original line number Diff line number Diff line
# This file is part of Tryton.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

from trytond.model.exceptions import ValidationError


+0 −1
Original line number Diff line number Diff line
# This file is part of Tryton.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

from trytond.pool import PoolMeta


+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ from .exceptions import (PeriodDateOverlapError, AmountLessThanZeroError,
                         PartyAccountPayableRequiredError)

__all__ = [
    'Membership', 'Period', 'Fee', 'Line', 'PostFee', 'GenerateFee',
    'Membership', 'Period', 'Fee', 'MembershipType', 'PostFee', 'GenerateFee',
    'GenerateFeeStart'
]

Loading