1
0
Fork 0
mirror of synced 2024-06-24 17:10:21 +12:00

Add tag filter argument to remove command

This commit is contained in:
JDC 2020-11-13 14:16:48 -05:00
parent cbb3d04c12
commit d54c3eec9d

View file

@ -50,7 +50,7 @@ def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional
parser.add_argument(
'--filter-type',
type=str,
choices=('exact', 'substring', 'domain', 'regex'),
choices=('exact', 'substring', 'domain', 'regex','tag'),
default='exact',
help='Type of pattern matching to use when filtering URLs',
)