(
value: str, instance: AsyncCallableGenDependency = Depends()
)
| 71 | |
| 72 | @app.get("/async-callable-gen-dependency-class") |
| 73 | async def get_async_callable_gen_dependency_class( |
| 74 | value: str, instance: AsyncCallableGenDependency = Depends() |
| 75 | ): |
| 76 | return await instance(value).__anext__() |
| 77 | |
| 78 | |
| 79 | @app.get("/callable-dependency") |
nothing calls this directly
no test coverage detected
searching dependent graphs…