(
foo: Foo | None = None,
)
| 17 | |
| 18 | @app.post("/") |
| 19 | async def post( |
| 20 | foo: Foo | None = None, |
| 21 | ): |
| 22 | return foo |
| 23 | |
| 24 | |
| 25 | client = TestClient(app) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…