|
|
@@ -1170,6 +1170,7 @@ def schedule(add: bool=False,
|
|
|
run_all: bool=False,
|
|
|
quiet: bool=False,
|
|
|
every: Optional[str]=None,
|
|
|
+ tag: str='',
|
|
|
depth: int=0,
|
|
|
overwrite: bool=False,
|
|
|
update: bool=not ONLY_NEW,
|
|
|
@@ -1203,6 +1204,7 @@ def schedule(add: bool=False,
|
|
|
'add',
|
|
|
*(['--overwrite'] if overwrite else []),
|
|
|
*(['--update'] if update else []),
|
|
|
+ *([f'--tag={tag}'] if tag else []),
|
|
|
f'--depth={depth}',
|
|
|
f'"{import_path}"',
|
|
|
] if import_path else ['update']),
|