(client: object)
| 18 | target = resolved or SimpleNamespace(id="thing_123", title="Target", executed=False) |
| 19 | |
| 20 | async def resolve(client: object) -> SimpleNamespace: |
| 21 | calls.append(("resolve", client)) |
| 22 | return target |
| 23 | |
| 24 | async def execute(client: object, resolved: SimpleNamespace) -> None: |
| 25 | calls.append(("execute", client)) |
nothing calls this directly
no outgoing calls
no test coverage detected