Skip to content

Commit 9a26266

Browse files
committed
typo fix
1 parent 0faf3e1 commit 9a26266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def save(self, samples, filename_prefix="ComfyUI", prompt=None, extra_pnginfo=No
477477

478478
class LoadLatent:
479479
@classmethod
480-
def INPUT_TYPES(cls):
480+
def INPUT_TYPES(s):
481481
input_dir = os.path.join(folder_paths.get_input_directory(), "Latent") # Adjusts to "Input/Latent"
482482
files = [f for f in os.listdir(input_dir) if os.path.isfile(os.path.join(input_dir, f)) and f.endswith(".latent")]
483483
return {"required": {"latent": [sorted(files), ]}}

0 commit comments

Comments
 (0)