Remove a file from working memory.
(self, file_path: str)
| 125 | item.access_count += 1 |
| 126 | |
| 127 | def remove(self, file_path: str): |
| 128 | """Remove a file from working memory.""" |
| 129 | if file_path in self._files: |
| 130 | del self._files[file_path] |
| 131 | |
| 132 | def clear(self): |
| 133 | """Clear all working memory (after task completes).""" |
no outgoing calls