(self, app: Flask)
| 243 | """ |
| 244 | |
| 245 | def __init__(self, app: Flask) -> None: |
| 246 | self.app = app |
| 247 | self.url_adapter = app.create_url_adapter(None) |
| 248 | self.g: _AppCtxGlobals = app.app_ctx_globals_class() |
| 249 | self._cv_tokens: list[contextvars.Token[AppContext]] = [] |
| 250 | |
| 251 | def push(self) -> None: |
| 252 | """Binds the app context to the current context.""" |
nothing calls this directly
no test coverage detected