(
repo_config: dict[str, Any],
store: Store,
root_config: dict[str, Any],
)
| 201 | |
| 202 | |
| 203 | def _repository_hooks( |
| 204 | repo_config: dict[str, Any], |
| 205 | store: Store, |
| 206 | root_config: dict[str, Any], |
| 207 | ) -> tuple[Hook, ...]: |
| 208 | if repo_config['repo'] in {LOCAL, META}: |
| 209 | return _non_cloned_repository_hooks(repo_config, store, root_config) |
| 210 | else: |
| 211 | return _cloned_repository_hooks(repo_config, store, root_config) |
| 212 | |
| 213 | |
| 214 | def install_hook_envs(hooks: Sequence[Hook], store: Store) -> None: |
no test coverage detected