(self)
| 35 | self.cmd += f"{type(self).__name__.lower()}{' --all' if self.all_subcommand else ''}{' -n ' + str(self.n) if self.n_subcommand else ''}" |
| 36 | |
| 37 | def construct(self): |
| 38 | if not settings.stdout and not settings.output_only_path and not settings.quiet: |
| 39 | print(f"{settings.INFO_STRING} {self.cmd}") |
| 40 | self.show_intro() |
| 41 | self.parse_commits() |
| 42 | self.parse_all() |
| 43 | self.recenter_frame() |
| 44 | self.scale_frame() |
| 45 | self.color_by() |
| 46 | self.show_command_as_title() |
| 47 | self.fadeout() |
| 48 | self.show_outro() |
nothing calls this directly
no test coverage detected