We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d8397 commit 6925215Copy full SHA for 6925215
1 file changed
index.html
@@ -1336,7 +1336,7 @@ <h2>2. Wrap your function in a CLI</h2>
1336
parser = argparse.ArgumentParser(prog='your-hook')
1337
parser.add_argument(
1338
'filenames',
1339
- nargs='*',
+ nargs='+',
1340
help='Filenames to process.',
1341
)
1342
@@ -1376,7 +1376,7 @@ <h3>Simplified example from <code>exif-stripper</code></h3>
1376
parser = argparse.ArgumentParser(prog='exif-stripper')
1377
1378
1379
1380
1381
1382
@@ -1446,7 +1446,7 @@ <h2>Example solution</h2>
1446
1447
1448
1449
1450
1451
1452
0 commit comments