コード例 #1
0
ファイル: scheduler.py プロジェクト: asyre/bachelor_degree
def get_scheduler(obj: Any) -> Optional[Scheduler]:
    return get_meta_information(obj, __scheduler_key)
コード例 #2
0
def get_skip(obj: Any) -> Optional[bool]:
    return get_meta_information(obj, __skip_key)
コード例 #3
0
def get_connection(obj: Any) -> Optional[str]:
    return get_meta_information(obj, __path_key)
コード例 #4
0
def get_description(obj: Any) -> Optional[str]:
    return get_meta_information(obj, __description_key)
コード例 #5
0
ファイル: node.py プロジェクト: asyre/bachelor_degree
def get_node(obj: Any) -> Optional[str]:
    return get_meta_information(obj, __node_key)
コード例 #6
0
ファイル: order.py プロジェクト: asyre/bachelor_degree
def get_order(obj: Any) -> Optional[int]:
    return get_meta_information(obj, __order_key)
コード例 #7
0
ファイル: env.py プロジェクト: asyre/bachelor_degree
def get_env(obj: Any) -> Optional[str]:
    return get_meta_information(obj, __env_key)