From 9ae00e79a38e55f529c5992688122b57272b8718 Mon Sep 17 00:00:00 2001 From: Yuta Hayashibe Date: Tue, 27 Sep 2022 12:22:58 +0900 Subject: [PATCH] Fix CI --- whispering/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/whispering/cli.py b/whispering/cli.py index ec2ba80..a387608 100644 --- a/whispering/cli.py +++ b/whispering/cli.py @@ -142,10 +142,10 @@ def get_wshiper(*, opts): def main() -> None: opts = get_opts() - if(opts.show_devices) : + if opts.show_devices: devices = sd.query_devices() for i, device in enumerate(devices): - if(device["max_input_channels"] > 0) : + if device["max_input_channels"] > 0: print(f"{i}: {device['name']}") return