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 9959aa9 commit 3241541Copy full SHA for 3241541
1 file changed
docs/arguments.rst
@@ -79,8 +79,8 @@ Example usage:
79
.. click:example::
80
81
@click.command()
82
- @click.argument('files', nargs=-1, type=click.Path(path_type=pathlib.Path))
83
- def touch(files: tuple[pathlib.Path, ...]):
+ @click.argument('files', nargs=-1, type=click.Path())
+ def touch(files):
84
"""Print all FILES file names."""
85
for filename in files:
86
click.echo(filename)
0 commit comments