(self)
| 23 | |
| 24 | class ModuleInActor: |
| 25 | def __init__(self): |
| 26 | self.logger = get_logger("module_in_actor", in_ray_actor=True) |
| 27 | self.logger.info("ModuleInActor initialized") |
| 28 | self.logger.debug("ModuleInActor initialized") |
| 29 | |
| 30 | |
| 31 | class ModuleInActor2: |
nothing calls this directly
no test coverage detected