trytond-party_company/carrier.py

11 lines
278 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(party.PartyCompanyMixin, metaclass=PoolMeta):
__name__ = 'carrier'