Skip to content

Commit 3a6cebe

Browse files
authored
Update styles_csv_loader.py
reverted change in order to work
1 parent 41ea08f commit 3a6cebe

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(style[0] for style in cls.styles_csv),),
42+
"styles": (list(cls.styles_csv.keys()),),
4343
},
4444

4545
}

0 commit comments

Comments
 (0)