(self, **kw: Any)
| 8 | |
| 9 | class BaseSystem(BaseThread): |
| 10 | def __init__(self, **kw: Any) -> None: |
| 11 | super().__init__() |
| 12 | self.lock: Lock = Lock() |
| 13 | self._system: Dict = {} |
| 14 | self.config: Optional[Union[Config, Dict[str, Any]]] = kw.get("config") |
| 15 | self.client: BaseClient |
| 16 | self.log = get_logger(__name__) |
| 17 | |
| 18 | def main(self) -> None: |
| 19 | raise NotImplementedError() |
nothing calls this directly
no test coverage detected