(self, task: dict)
| 144 | return json.loads(path.read_text()) |
| 145 | |
| 146 | def _save(self, task: dict): |
| 147 | self._path(task["id"]).write_text(json.dumps(task, indent=2)) |
| 148 | |
| 149 | def create(self, subject: str, description: str = "") -> str: |
| 150 | task = { |
no test coverage detected