(self)
| 32 | self.cmd += f"{type(self).__name__.lower()} {self.file} {self.new_file}" |
| 33 | |
| 34 | def construct(self): |
| 35 | if not settings.stdout and not settings.output_only_path and not settings.quiet: |
| 36 | print(f"{settings.INFO_STRING} {self.cmd}") |
| 37 | |
| 38 | self.show_intro() |
| 39 | self.parse_commits() |
| 40 | self.recenter_frame() |
| 41 | self.scale_frame() |
| 42 | self.vsplit_frame() |
| 43 | self.setup_and_draw_zones( |
| 44 | first_column_name="Working directory", |
| 45 | second_column_name="Staging area", |
| 46 | third_column_name="Renamed files", |
| 47 | ) |
| 48 | self.rename_moved_file() |
| 49 | self.show_command_as_title() |
| 50 | self.fadeout() |
| 51 | self.show_outro() |
| 52 | |
| 53 | def populate_zones( |
| 54 | self, |
nothing calls this directly
no test coverage detected