From 68ef63f783cb1f0f16b64d853a14f8b3b232f529 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Mon, 21 Jul 2025 08:44:19 +0300 Subject: [PATCH] fix dupe params --- get_youtube_videos/get_youtube_videos.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/get_youtube_videos/get_youtube_videos.py b/get_youtube_videos/get_youtube_videos.py index dce4212..36004db 100644 --- a/get_youtube_videos/get_youtube_videos.py +++ b/get_youtube_videos/get_youtube_videos.py @@ -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', )