(repo_path: Union[str, os.PathLike], frid: str, module_name: Optional[str] = None)
| 332 | |
| 333 | |
| 334 | def has_commit_for_frid(repo_path: Union[str, os.PathLike], frid: str, module_name: Optional[str] = None) -> bool: |
| 335 | return bool(_get_commit_with_frid(Repo(repo_path), frid, module_name)) |
| 336 | |
| 337 | |
| 338 | def _get_base_folder_commit(repo: Repo) -> str: |
nothing calls this directly
no test coverage detected