MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / parse_csv_paths

Function parse_csv_paths

tests/miocodec/miocodec_python_warm_bench.py:53–56  ·  view source on GitHub ↗
(value: str, fallback: Path)

Source from the content-addressed store, hash-verified

51
52
53def parse_csv_paths(value: str, fallback: Path) -> list[Path]:
54 if not value:
55 return [fallback]
56 return [Path(item) for item in value.split(",") if item]
57
58
59def load_json_requests(args: argparse.Namespace) -> list[dict[str, Any]]:

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected