Commit 7858b5c5 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

tweaks

parent 4dc7deb0
import json import json
import os import os
from typing import Any, Callable, Optional from typing import Callable
import yaml import yaml
from astropy import table from astropy import table
from ._dispatcher import override_common_keys
from .._dfs import DFS, dfs from .._dfs import DFS, dfs
from ..hash import generate_sha1_from_time from ..hash import generate_sha1_from_time
from ._dispatcher import Dispatcher, override_common_keys
DAG_CONFIG_DIR = os.path.join( DAG_CONFIG_DIR = os.path.join(
os.path.dirname(os.path.dirname(__file__)), os.path.dirname(os.path.dirname(__file__)),
"dag_config", "dag_config",
) )
"""
- BaseTrigger
- AutomaticTrigger
- ManualTrigger
- with Parameters
- without Parameters
"""
class BaseDAG: class BaseDAG:
"""Base class for all Directed Acyclic Graph (DAG) implementations. """Base class for all Directed Acyclic Graph (DAG) implementations.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment