MCPcopy Create free account
hub / github.com/apple/ml-streambridge / load_json

Function load_json

streambridge/utils.py:324–327  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

322 return strings_list
323
324def load_json(path):
325 with open(path) as f:
326 data = json.load(f)
327 return data
328
329def save_json(file, path):
330 with open(path, 'w') as f:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected