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

11 lines
307 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__ = ['Activity']
class Activity(object, party.PartyCompanyMixin):
__metaclass__ = PoolMeta
__name__ = "activity.activity"