MCPcopy Index your code
hub / github.com/FSoft-AI4Code/CodeWiki / parse_patterns

Function parse_patterns

codewiki/cli/commands/config.py:28–32  ·  view source on GitHub ↗

Parse comma-separated patterns into a list.

(patterns_str: str)

Source from the content-addressed store, hash-verified

26
27
28def parse_patterns(patterns_str: str) -> List[str]:
29 """Parse comma-separated patterns into a list."""
30 if not patterns_str:
31 return []
32 return [p.strip() for p in patterns_str.split(',') if p.strip()]
33
34
35@click.group(name="config")

Callers 1

config_agentFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected