(error)
| 263 | |
| 264 | @hooks.error() |
| 265 | def error_hook(error): |
| 266 | try: |
| 267 | retrieved_app = get_app() |
| 268 | hook_access_results["error_hook"] = retrieved_app is not None |
| 269 | except Exception: |
| 270 | hook_access_results["error_hook"] = False |
| 271 | |
| 272 | @hooks.callback( |
| 273 | Output("hook-output", "children"), |
nothing calls this directly
no test coverage detected
searching dependent graphs…