diff options
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 8c9a9bbb4..dddd5b15b 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -19,7 +19,6 @@ from .postprocessor import ( SponsorBlockPP, ) from .postprocessor.modify_chapters import DEFAULT_SPONSORBLOCK_CHAPTER_TITLE -from .update import detect_variant from .utils import ( OUTTMPL_TYPES, POSTPROCESS_WHEN, @@ -325,14 +324,6 @@ def create_parser(): action='version', help='Print program version and exit') general.add_option( - '-U', '--update', - action='store_true', dest='update_self', - help='Update this program to latest version') - general.add_option( - '--no-update', - action='store_false', dest='update_self', - help='Do not update (default)') - general.add_option( '-i', '--ignore-errors', action='store_true', dest='ignoreerrors', help='Ignore download and postprocessing errors. The download will be considered successful even if the postprocessing fails') |