(self)
| 29 | self.cmd += f" {self.command.value} {self.remote}" |
| 30 | |
| 31 | def construct(self): |
| 32 | if not settings.stdout and not settings.output_only_path and not settings.quiet: |
| 33 | print(f"{settings.INFO_STRING} {self.cmd}") |
| 34 | |
| 35 | self.show_intro() |
| 36 | self.add_details() |
| 37 | self.recenter_frame() |
| 38 | self.scale_frame() |
| 39 | self.fadeout() |
| 40 | self.show_outro() |
| 41 | |
| 42 | def add_details(self): |
| 43 | self.camera.frame.scale_to_fit_width(18 * 1.1) |
nothing calls this directly
no test coverage detected