Commit 26b73728 authored by comfyanonymous's avatar comfyanonymous
Browse files

Fix SplitSigmas.

parent 71713888
......@@ -58,7 +58,7 @@ class SplitSigmas:
def get_sigmas(self, sigmas, step):
sigmas1 = sigmas[:step + 1]
sigmas2 = sigmas[step + 1:]
sigmas2 = sigmas[step:]
return (sigmas1, sigmas2)
class KSamplerSelect:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment