We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24c102 commit fa83cd2Copy full SHA for fa83cd2
src/ffmpeg_downloader/__main__.py
@@ -233,7 +233,7 @@ def uninstall(args):
233
print(" Would remove:")
234
print(f" {os.path.join(ffdl.get_dir(),'ffmpeg','*')}")
235
236
- if input(f"Proceed (Y/n)?: ").lower() not in ("y", "yes", ""):
+ if not args.y and input(f"Proceed (Y/n)?: ").lower() not in ("y", "yes", ""):
237
# aborted by user
238
return
239
0 commit comments