(self, **kwargs)
| 352 | FUNCTION = "get_sampler" |
| 353 | |
| 354 | def get_sampler(self, **kwargs): |
| 355 | sampler = comfy.samplers.KSAMPLER(distance_wrap(**kwargs)) |
| 356 | return (sampler, ) |
| 357 | |
| 358 | class SamplerDistance(SamplerDistanceBase): |
| 359 | _DISTANCE_OPTIONS = ("resample", "resample_end", "cfgpp") |
nothing calls this directly
no test coverage detected