(file)
| 343 | @click.command() |
| 344 | @click.option("--file", type=click.File("r")) |
| 345 | def output(file): |
| 346 | click.echo(file.read()) |
| 347 | |
| 348 | with runner.isolated_filesystem(): |
| 349 | result_in = runner.invoke(input, ["--file=example.txt"]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…