(scope: Scope)
| 858 | |
| 859 | |
| 860 | def _get_fastapi_scope(scope: Scope) -> dict[str, Any]: |
| 861 | fastapi_scope = scope.setdefault(_FASTAPI_SCOPE_KEY, {}) |
| 862 | assert isinstance(fastapi_scope, dict) |
| 863 | return fastapi_scope |
| 864 | |
| 865 | |
| 866 | def _update_scope(scope: Scope, child_scope: Scope) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…