mirror of
https://github.com/NaN-tic/trytond-party_company.git
synced 2023-12-14 03:32:57 +01:00
f3310379e3
From changeset-033bb5cdc41e
11 lines
307 B
Python
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"
|