From ef3068a4c205767e47398a225497dae13bc08a09 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Mon, 10 Jun 2024 15:28:32 +0200 Subject: [PATCH] use direct comparison --- client/ayon_core/addon/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/addon/base.py b/client/ayon_core/addon/base.py index 878c50e039..8c5158a712 100644 --- a/client/ayon_core/addon/base.py +++ b/client/ayon_core/addon/base.py @@ -442,7 +442,7 @@ def _load_addons_in_core( )) continue - elif ext not in (".py", ): + elif ext != ".py": continue # TODO add more logic how to define if folder is addon or not