We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f605797 commit fe44989Copy full SHA for fe44989
1 file changed
evic/cli.py
@@ -291,7 +291,7 @@ def uploadlogo(inputfile, invert, noverify):
291
292
293
@usb.command('dump-dataflash')
294
-@click.option('--output', '-o', type=click.File('wb'))
+@click.option('--output', '-o', type=click.File('wb'), required=True)
295
@click.option('--no-verify', 'noverify', is_flag=True,
296
help='Disable verification.')
297
def dumpdataflash(output, noverify):
@@ -344,7 +344,7 @@ def main():
344
345
@main.command()
346
@click.argument('inputfile', type=click.File('rb'))
347
348
def convert(inputfile, output):
349
"""Decrypt/encrypt an APROM image."""
350
0 commit comments