MCPcopy Index your code
hub / github.com/google/adk-python / __anext__

Method __anext__

tests/unittests/models/test_google_llm.py:53–57  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

51 return self
52
53 async def __anext__(self):
54 try:
55 return next(self.iter)
56 except StopIteration as exc:
57 raise StopAsyncIteration from exc
58
59 async def aclose(self):
60 pass

Calls

no outgoing calls

Tested by

no test coverage detected