diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-06-01 00:18:53 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-06-01 00:18:53 +0300 |
commit | 0cc531a1907337ddca38ff2824b89bb3d226e24b (patch) | |
tree | 56362fbe7faa0a66aa39d019459647b40eb007cf /src/sound_bot.py | |
parent | d0ab2b4f08a38a26d0330a8555bfd934a7015a4e (diff) |
sound_bot: comment out 'im.show()'
Diffstat (limited to 'src/sound_bot.py')
-rwxr-xr-x | src/sound_bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound_bot.py b/src/sound_bot.py index 9dec6b7..70d89a8 100755 --- a/src/sound_bot.py +++ b/src/sound_bot.py @@ -458,7 +458,7 @@ def camera_capture(ctx: Context) -> None: if 'rotate' in camera_config: im = Image.open(fd.name) im.rotate(camera_config['rotate'], expand=True) - im.show() + # im.show() im.save(fd.name) logger.debug(f"rotated image {camera_config['rotate']} degrees") |