Finds initial commit.
(repo: Repo)
| 341 | |
| 342 | |
| 343 | def _get_initial_commit(repo: Repo) -> str: |
| 344 | """Finds initial commit.""" |
| 345 | return _get_commit_with_message(repo, INITIAL_COMMIT_MESSAGE) |
| 346 | |
| 347 | |
| 348 | def _get_commit_with_message(repo: Repo, message: str) -> str: |
no test coverage detected