MCPcopy Index your code
hub / github.com/feast-dev/feast / _dict_to_multi_line

Function _dict_to_multi_line

sdk/python/feast/cli/cli_utils.py:325–328  ·  view source on GitHub ↗
(values: dict[str, str])

Source from the content-addressed store, hash-verified

323
324
325def _dict_to_multi_line(values: dict[str, str]) -> str:
326 if not values:
327 return "-"
328 return "\n".join([f"{key} : {value}" for key, value in values.items()])

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected