(self, sha_or_ref="HEAD")
| 103 | self.show_outro() |
| 104 | |
| 105 | def get_commit(self, sha_or_ref="HEAD"): |
| 106 | if self.head_exists(): |
| 107 | return self.repo.commit(sha_or_ref) |
| 108 | return "dark" |
| 109 | |
| 110 | def get_default_commits(self): |
| 111 | defaultCommits = [self.get_commit()] |
no test coverage detected