MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / __init__

Method __init__

example_code/item_076.py:388–392  ·  view source on GitHub ↗
(self, send, receive, secret)

Source from the content-addressed store, hash-verified

386print("Example 23")
387class 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")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected