(value)
| 232 | |
| 233 | |
| 234 | def check_directory(value): |
| 235 | if not os.path.isdir(value): |
| 236 | raise argparse.ArgumentTypeError("%s is not a directory" % value) |
| 237 | return value |
| 238 | |
| 239 | |
| 240 | def adp_parse_args(): |
nothing calls this directly
no outgoing calls
no test coverage detected