(self, endpoint)
| 33 | |
| 34 | class AndroidRpcClient(RpcClient): |
| 35 | def __init__(self, endpoint): |
| 36 | self.endpoint = endpoint |
| 37 | super(AndroidRpcClient, self).__init__(HttpTransport) |
| 38 | |
| 39 | def initialize_transport(self): |
| 40 | return HttpTransport(self.endpoint, self) |