(self)
| 89 | |
| 90 | class PathsArgument(CustomArgument): |
| 91 | def __init__(self): |
| 92 | doc = ( |
| 93 | 'The space-separated paths to be invalidated.' |
| 94 | ' Note: --invalidation-batch and --paths are mutually exclusive.' |
| 95 | ) |
| 96 | super(PathsArgument, self).__init__('paths', nargs='+', help_text=doc) |
| 97 | |
| 98 | def add_to_params(self, parameters, value): |
| 99 | if value is not None: |