(
route_context: routing.RouteContext,
)
| 479 | |
| 480 | |
| 481 | def _get_api_route_for_openapi( |
| 482 | route_context: routing.RouteContext, |
| 483 | ) -> routing._APIRouteLike | None: |
| 484 | if isinstance(route_context.original_route, routing.APIRoute): |
| 485 | return cast(routing._APIRouteLike, route_context) |
| 486 | return None |
| 487 | |
| 488 | |
| 489 | def get_fields_from_routes( |
no outgoing calls
no test coverage detected
searching dependent graphs…