trytond-party_company/carrier.py

12 lines
295 B
Python
Raw Normal View History

2017-05-26 09:59:23 +02:00
# 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
2017-05-26 09:59:23 +02:00
__all__ = ['Carrier']
class Carrier(object, party.PartyCompanyMixin):
__metaclass__ = PoolMeta
2017-05-26 09:59:23 +02:00
__name__ = 'carrier'