Skip to content

Commit

Permalink
Merge pull request #351 from Gourieff/evolve
Browse files Browse the repository at this point in the history
Evolve -> Main: PR#342
  • Loading branch information
Gourieff authored Jul 3, 2024
2 parents a2c3668 + 25803db commit bcfd45c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,11 @@ def get_restorers():

def get_model_names(get_models):
models = get_models()
names = ["none"]
names = []
for x in models:
names.append(os.path.basename(x))
names.sort(key=str.lower)
names.insert(0, "none")
return names

def model_names():
Expand Down

0 comments on commit bcfd45c

Please sign in to comment.