src/pydolphinscheduler/core/yaml_workflow.py [368:376]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        def get_op_cls(op):
            cls = None
            if op.lower() == "and":
                cls = And
            elif op.lower() == "or":
                cls = Or
            else:
                raise Exception(f"OP must be in And or Or, but get: {op}")
            return cls
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/pydolphinscheduler/core/yaml_workflow.py [444:452]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        def get_op_cls(op):
            cls = None
            if op.lower() == "and":
                cls = And
            elif op.lower() == "or":
                cls = Or
            else:
                raise Exception(f"OP must be in And or Or, but get: {op}")
            return cls
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



