Finds commit related to copy of the base folder.
(repo: Repo)
| 336 | |
| 337 | |
| 338 | def _get_base_folder_commit(repo: Repo) -> str: |
| 339 | """Finds commit related to copy of the base folder.""" |
| 340 | return _get_commit_with_message(repo, BASE_FOLDER_COMMIT_MESSAGE) |
| 341 | |
| 342 | |
| 343 | def _get_initial_commit(repo: Repo) -> str: |
no test coverage detected