(root_config: dict[str, Any], store: Store)
| 230 | |
| 231 | |
| 232 | def all_hooks(root_config: dict[str, Any], store: Store) -> tuple[Hook, ...]: |
| 233 | return tuple( |
| 234 | hook |
| 235 | for repo in root_config['repos'] |
| 236 | for hook in _repository_hooks(repo, store, root_config) |
| 237 | ) |