(file)
| 338 | @click.command() |
| 339 | @click.option("--file", type=click.File("w")) |
| 340 | def input(file): |
| 341 | file.write("Hello World!\n") |
| 342 | |
| 343 | @click.command() |
| 344 | @click.option("--file", type=click.File("r")) |
no test coverage detected
searching dependent graphs…