(self, action: PlanAction, filePath: str = "", onCleared=None)
| 15 | self._onCleared = None |
| 16 | |
| 17 | def set(self, action: PlanAction, filePath: str = "", onCleared=None) -> None: |
| 18 | self.action = action |
| 19 | self.filePath = filePath |
| 20 | self._onCleared = onCleared |
| 21 | |
| 22 | def clear(self) -> None: |
| 23 | callback = self._onCleared |
no outgoing calls
no test coverage detected