Remove unnecessary variable length args for dedupe

This commit is contained in:
Ben Muthalaly 2024-03-05 21:13:45 -06:00
parent d74ddd42ae
commit d8cf09c21e
8 changed files with 9 additions and 9 deletions

View file

@ -57,7 +57,7 @@ def save_archive_dot_org(link: Link, out_dir: Optional[Path]=None, timeout: int=
]
cmd = [
CURL_BINARY,
*dedupe(*options),
*dedupe(options),
submit_url,
]
status = 'succeeded'