(self, send, receive, secret)
| 170 | |
| 171 | class ClientSession: |
| 172 | def __init__(self, send, receive, secret): |
| 173 | self.send = send |
| 174 | self.receive = receive |
| 175 | self.secret = secret |
| 176 | self.last_distance = None |
| 177 | |
| 178 | |
| 179 | print("Example 10") |
nothing calls this directly
no outgoing calls
no test coverage detected