MCPcopy Create free account
hub / github.com/OpenDCAI/DataFlow-MM / _copy_scripts

Function _copy_scripts

dataflow/cli_funcs/cli_init.py:7–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5from .copy_funcs import copy_files_without_recursion, copy_file, copy_files_recursively
6
7def _copy_scripts():
8 target_dir = os.getcwd()
9 if not os.path.exists(target_dir):
10 os.makedirs(target_dir)
11
12 # script_path = DataFlowPath.get_dataflow_scripts_dir()
13
14 copy_files_recursively(DataFlowPath.get_dataflow_scripts_dir(), target_dir)
15
16def _copy_pipelines():
17 target_dir = os.getcwd()

Callers

nothing calls this directly

Calls 1

copy_files_recursivelyFunction · 0.85

Tested by

no test coverage detected