()
| 2589 | if not self.config.suppress_callback_exceptions: |
| 2590 | |
| 2591 | async def get_layouts(): |
| 2592 | return [ |
| 2593 | await execute_async_function(page["layout"]) |
| 2594 | if callable(page["layout"]) |
| 2595 | else page["layout"] |
| 2596 | for page in _pages.PAGE_REGISTRY.values() |
| 2597 | ] |
| 2598 | |
| 2599 | layouts = await get_layouts() |
| 2600 | # pylint: disable=not-callable |
nothing calls this directly
no test coverage detected