Source code for pas.collections.party

from __future__ import annotations

from onegov.parliament.collections.party import PartyCollection
from onegov.pas.models import PASParty


[docs] class PASPartyCollection(PartyCollection): @property
[docs] def model_class(self) -> type[PASParty]: return PASParty