(param: float = Path())
| 11 | |
| 12 | @app.get("/float/{param:float}") |
| 13 | def float_convertor(param: float = Path()): |
| 14 | return {"float": param} |
| 15 | |
| 16 | |
| 17 | @app.get("/path/{param:path}") |
nothing calls this directly
no test coverage detected
searching dependent graphs…