| 38 | ret: int |
| 39 | |
| 40 | class TestAsyncTransformer(pw.AsyncTransformer, output_schema=OutputSchema): |
| 41 | async def invoke(self, value: int) -> dict[str, Any]: |
| 42 | await asyncio.sleep(random.uniform(0, 0.1)) |
| 43 | return dict(ret=value + 1) |
| 44 | |
| 45 | input_table = T( |
| 46 | """ |
no outgoing calls