bytebeat_compiler.py: simplify grammar in CLI help
Simplify grammar in the help text for the `--verbose` option
This commit is contained in:
parent
5eb82bc133
commit
842d93c1a5
@ -81,7 +81,7 @@ if __name__ == "__main__":
|
|||||||
parser.add_argument("-q", "--silent", default=False, action="store_true",
|
parser.add_argument("-q", "--silent", default=False, action="store_true",
|
||||||
help="do not output anything during generation")
|
help="do not output anything during generation")
|
||||||
parser.add_argument("-v", "--verbose", default=False, action="store_true",
|
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()
|
args = parser.parse_args()
|
||||||
|
|
||||||
bytebeat_contents = read_from_file_or_stdin(args.file).strip()
|
bytebeat_contents = read_from_file_or_stdin(args.file).strip()
|
||||||
|
Loading…
Reference in New Issue
Block a user