From 7ad7c5483158b2109df11258f3ec65fa1439f2fd Mon Sep 17 00:00:00 2001 From: mattmcw Date: Sun, 9 May 2021 11:46:48 -0400 Subject: [PATCH] quit() is more pythonic --- python/example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/example.py b/python/example.py index 2793ffe..a644613 100644 --- a/python/example.py +++ b/python/example.py @@ -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]