trytond-party_company/carrier.py
2021-04-25 16:27:42 +02:00

9 lines
255 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
class Carrier(party.PartyCompanyMixin, metaclass=PoolMeta):
__name__ = 'carrier'