(cli_argument, value, **kwargs)
| 49 | |
| 50 | |
| 51 | def validate_is_zip_file(cli_argument, value, **kwargs): |
| 52 | if cli_argument.name == 'zip-file': |
| 53 | _should_contain_zip_content(value) |
| 54 | |
| 55 | |
| 56 | class ZipFileArgumentHoister: |
nothing calls this directly
no test coverage detected