8 lines
232 B
Python
8 lines
232 B
Python
from compose.cfg.entity import CfgDataYaml
|
|
from compose.src_path.entity import SrcPaths
|
|
|
|
|
|
def src_path_get_files(src_paths: SrcPaths, data: CfgDataYaml):
|
|
for path in data["files"]:
|
|
yield src_paths.cfg_dir.joinpath(path)
|