trytond-party_company/carrier.py
Raimon Esteve f3310379e3 IMP other classes to use PartyCompanyMixin
From changeset-033bb5cdc41e
2017-06-20 16:31:22 +02:00

11 lines
295 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import PoolMeta
from . import party
__all__ = ['Carrier']
class Carrier(object, party.PartyCompanyMixin):
__metaclass__ = PoolMeta
__name__ = 'carrier'