bytebeat_compiler.py: simplify grammar in CLI help

Simplify grammar in the help text for the `--verbose` option
This commit is contained in:
Intel A80486DX2-66 2023-11-25 21:06:19 +03:00
parent 5eb82bc133
commit 842d93c1a5
Signed by: 80486DX2-66
GPG key ID: 83631EF27054609B

View file

@ -81,7 +81,7 @@ if __name__ == "__main__":
parser.add_argument("-q", "--silent", default=False, action="store_true",
help="do not output anything during generation")
parser.add_argument("-v", "--verbose", default=False, action="store_true",
help="output generation progress during generation")
help="show progress during generation")
args = parser.parse_args()
bytebeat_contents = read_from_file_or_stdin(args.file).strip()