From 5da8d793d66215f909e26591dafab97a122d14a5 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 19 Feb 2020 14:06:53 -0800 Subject: [PATCH] Return this None instead of assigning then returning. --- etiquette/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etiquette/constants.py b/etiquette/constants.py index de69961..27966d6 100644 --- a/etiquette/constants.py +++ b/etiquette/constants.py @@ -35,7 +35,7 @@ def _load_ffmpeg(): ) except converter.ffmpeg.FFMpegError: traceback.print_exc() - ffmpeg = None + return None return ffmpeg