(self, instance, options)
| 40 | |
| 41 | class FakeActorHandle: |
| 42 | def __init__(self, instance, options): |
| 43 | self.instance = instance |
| 44 | self.options = options |
| 45 | |
| 46 | def __getattr__(self, name): |
| 47 | return FakeRemoteMethod(getattr(self.instance, name)) |
nothing calls this directly
no outgoing calls
no test coverage detected