MCPcopy Create free account
hub / github.com/adny-code/fastgrind / _parse_csv_strings

Function _parse_csv_strings

tools/fastgrind.py:378–387  ·  view source on GitHub ↗
(raw: str | None)

Source from the content-addressed store, hash-verified

376
377
378def _parse_csv_strings(raw: str | None) -> list[str]:
379 if not raw:
380 return []
381 values: list[str] = []
382 for chunk in raw.split(","):
383 chunk = chunk.strip()
384 if not chunk:
385 continue
386 values.append(chunk)
387 return values
388
389
390def _json_response(payload: Any) -> bytes:

Callers 1

_dispatchMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected