Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
325
def
_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()])
Callers
1
handle_not_verbose_permissions_command
Function · 0.85
Calls
1
join
Method · 0.45
Tested by
no test coverage detected