(
item_id: str = Path(
example="item_1",
),
)
| 86 | |
| 87 | @app.get("/path_example/{item_id}") |
| 88 | def path_example( |
| 89 | item_id: str = Path( |
| 90 | example="item_1", |
| 91 | ), |
| 92 | ): |
| 93 | return item_id |
| 94 | |
| 95 | @app.get("/path_examples/{item_id}") |
| 96 | def path_examples( |
nothing calls this directly
no test coverage detected
searching dependent graphs…