(self, fake_ray, actor_class, options=None)
| 49 | |
| 50 | class FakeRemoteActorClass: |
| 51 | def __init__(self, fake_ray, actor_class, options=None): |
| 52 | self.fake_ray = fake_ray |
| 53 | self.actor_class = actor_class |
| 54 | self._options = dict(options or {}) |
| 55 | |
| 56 | def options(self, **kwargs): |
| 57 | merged = dict(self._options) |
nothing calls this directly
no outgoing calls
no test coverage detected