Destructor function, cleanup scheduled task :return:
(self)
| 46 | self._schedule_clear() |
| 47 | |
| 48 | def __del__(self): |
| 49 | """ |
| 50 | Destructor function, cleanup scheduled task |
| 51 | :return: |
| 52 | """ |
| 53 | if self._cron_task is not None: |
| 54 | self._cron_task.cancel() |
| 55 | |
| 56 | def get(self, key: str) -> Optional[Any]: |
| 57 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected