(self, send, receive, secret)
| 386 | print("Example 23") |
| 387 | class AsyncClientSession: |
| 388 | def __init__(self, send, receive, secret): |
| 389 | self.send = send |
| 390 | self.receive = receive |
| 391 | self.secret = secret |
| 392 | self.last_distance = None |
| 393 | |
| 394 | |
| 395 | print("Example 24") |
nothing calls this directly
no outgoing calls
no test coverage detected