Opens all images in an image viewer.
(images)
| 121 | @cli.command("display") |
| 122 | @processor |
| 123 | def display_cmd(images): |
| 124 | """Opens all images in an image viewer.""" |
| 125 | for image in images: |
| 126 | click.echo(f"Displaying '{image.filename}'") |
| 127 | image.show() |
| 128 | yield image |
| 129 | |
| 130 | |
| 131 | @cli.command("resize") |
nothing calls this directly
no test coverage detected
searching dependent graphs…