(self, operator="OR", *args)
| 810 | # E.g, CompositeIndicatorExpression(operator="AND", arg1, arg2, arg3) |
| 811 | # will raise an error. |
| 812 | def __init__(self, operator="OR", *args): |
| 813 | super(CompositeIndicatorExpression, self).__init__(*args) |
| 814 | self.operator = operator |
| 815 | |
| 816 | |
| 817 | class _RelatedCampaignRefList(typedlist.TypedList): |