Skip to content

Commit 41ea08f

Browse files
authored
fixed error in loading
thanks to @brumie
1 parent 4786124 commit 41ea08f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

styles_csv_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def INPUT_TYPES(cls):
3939
cls.styles_csv = cls.load_styles_csv(os.path.join(folder_paths.base_path, "styles.csv"))
4040
return {
4141
"required": {
42-
"styles": (list(cls.styles_csv.keys()),),
42+
"styles": (list(style[0] for style in cls.styles_csv),),
4343
},
4444

4545
}

0 commit comments

Comments
 (0)