MCPcopy Index your code
hub / github.com/shareAI-lab/learn-claude-code / get

Method get

agents/s07_task_system.py:76–77  ·  view source on GitHub ↗
(self, task_id: int)

Source from the content-addressed store, hash-verified

74 return json.dumps(task, indent=2, ensure_ascii=False)
75
76 def get(self, task_id: int) -> str:
77 return json.dumps(self._load(task_id), indent=2, ensure_ascii=False)
78
79 def update(self, task_id: int, status: str = None,
80 add_blocked_by: list = None, remove_blocked_by: list = None) -> str:

Callers 4

_clear_dependencyMethod · 0.45
list_allMethod · 0.45
s07_task_system.pyFile · 0.45
agent_loopFunction · 0.45

Calls 1

_loadMethod · 0.95

Tested by

no test coverage detected