quit() is more pythonic

This commit is contained in:
Matt McWilliams 2021-05-09 11:46:48 -04:00
parent b682eb0f9c
commit 7ad7c54831
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import ffmpeg
if len(sys.argv) < 3 :
print("Please provide input and output arguments")
exit()
quit()
INPUT = sys.argv[1]
OUTPUT = sys.argv[2]