def _get_operator_delegate_attributes()

in liminal/runners/airflow/operators/operator_with_variable_resolving.py [0:0]


    def _get_operator_delegate_attributes(self):
        return [
            attr
            for attr in dir(self.operator_delegate)
            if attr not in _BASE_OPERATOR_ATTRIBUTES
            and attr not in dir(BaseOperator)
            and not attr.startswith('_')
            and attr not in ('args', 'kwargs', 'lineage_data', 'subdag', 'template_fields')
        ]