fix dupe params

This commit is contained in:
Antonio J. Delgado 2025-07-21 08:44:19 +03:00
parent 814bfee247
commit 68ef63f783

View file

@ -571,7 +571,7 @@ class GetYoutubeVideos:
help='URLs for proxies to use in case of errors.'
)
@click.option(
'--downloaded-database', '-d',
'--downloaded-database', '-D',
default=f"{os.environ.get('HOME', os.environ.get('USERPROFILE', ''))}/.config/downloaded_youtube_videos",
help='File to store the IDs of downloaded videos'
)
@ -587,7 +587,7 @@ class GetYoutubeVideos:
help='YouTube channels IDs to look up'
)
@click.option(
'--channel-limit', '-l',
'--channel-limit', '-r',
default=5,
type=int,
help='Maximun number of videos to download from a channel'
@ -628,7 +628,7 @@ class GetYoutubeVideos:
)
@click.option(
'--cache-file',
'-f',
'-F',
default=f"{CACHE_FOLDER}/get_youtube_videos.json",
help='Cache file to store data from each run',
)