From a0001bd384ad8c5b2dc90e2aa99e1a5661284d22 Mon Sep 17 00:00:00 2001 From: Jose Abelardo Gutierrez Satruno Date: Wed, 6 Sep 2023 01:20:20 +0200 Subject: [PATCH] Update folder_paths.py fixed typo in veryfy -> verify --- folder_paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folder_paths.py b/folder_paths.py index ec32e8ef3..ad5abf7be 100644 --- a/folder_paths.py +++ b/folder_paths.py @@ -36,7 +36,7 @@ input_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "inp filename_list_cache = {} -def veryfy_input_directory(): +def verify_input_directory(): global input_directory if not os.path.exists(input_directory): os.makedirs(input_directory)