(layout)
| 254 | |
| 255 | @hooks.layout() |
| 256 | def layout_hook(layout): |
| 257 | try: |
| 258 | retrieved_app = get_app() |
| 259 | hook_access_results["layout_hook"] = retrieved_app is not None |
| 260 | except Exception: |
| 261 | hook_access_results["layout_hook"] = False |
| 262 | return layout |
| 263 | |
| 264 | @hooks.error() |
| 265 | def error_hook(error): |
nothing calls this directly
no test coverage detected
searching dependent graphs…