From b14c041cf86b5bded6d4bbf26becbfe0456be166 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Mon, 10 Jun 2024 15:37:52 +0200 Subject: [PATCH] more f-string --- client/ayon_core/addon/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/ayon_core/addon/base.py b/client/ayon_core/addon/base.py index 8c5158a712..b9ecff4233 100644 --- a/client/ayon_core/addon/base.py +++ b/client/ayon_core/addon/base.py @@ -413,9 +413,9 @@ def _load_addons_in_core( # - has small differences in import logic modules_dir = os.path.join(AYON_CORE_ROOT, "modules") if not os.path.exists(modules_dir): - log.warning(( - "Could not find path when loading AYON addons \"{}\"" - ).format(modules_dir)) + log.warning( + f"Could not find path when loading AYON addons \"{modules_dir}\"" + ) return ignored_filenames = IGNORED_FILENAMES | IGNORED_DEFAULT_FILENAMES