(self)
| 96 | sys.exit(1) |
| 97 | |
| 98 | def construct(self): |
| 99 | print(f"{settings.INFO_STRING} {type(self).__name__.lower()}") |
| 100 | self.show_intro() |
| 101 | self.parse_commits() |
| 102 | self.fadeout() |
| 103 | self.show_outro() |
| 104 | |
| 105 | def get_commit(self, sha_or_ref="HEAD"): |
| 106 | if self.head_exists(): |
nothing calls this directly
no test coverage detected