(file)
| 386 | @click.command() |
| 387 | @click.option("--file", type=click.File("w", lazy=False)) |
| 388 | def input_non_lazy(file): |
| 389 | file.write("Hello World!\n") |
| 390 | |
| 391 | with runner.isolated_filesystem(): |
| 392 | os.mkdir("example.txt") |
nothing calls this directly
no test coverage detected
searching dependent graphs…