(*, route: routing._APIRouteLike, method: str)
| 228 | |
| 229 | |
| 230 | def generate_operation_summary(*, route: routing._APIRouteLike, method: str) -> str: |
| 231 | if route.summary: |
| 232 | return route.summary |
| 233 | return route.name.replace("_", " ").title() |
| 234 | |
| 235 | |
| 236 | def get_openapi_operation_metadata( |
no outgoing calls
no test coverage detected
searching dependent graphs…