From 8df2334bc4c3a827fce33f7cb8f95f1eefd780e5 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sun, 3 Dec 2023 15:44:52 +0300 Subject: [PATCH] CLI: extend description for argument `file` --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index a70f36e..4057779 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -61,7 +61,7 @@ if __name__ == "__main__": "environmental variables `CC`, `CC_FLAGS`, `INPUT_FILE`, " "`OUTPUT_FILE`.") parser.add_argument("file", type=str, - help="bytebeat formula file") + help="bytebeat formula file (use `-` to read from stdin)") parser.add_argument("-r", "--sample-rate", default=8000, type=int, help="sample rate (Hz)") parser.add_argument("-p", "--final-sample-rate", default=None, type=int,