Spaces:
Running on Zero
Running on Zero
Z User commited on
Commit ·
d969fec
1
Parent(s): 5b1e26f
Fix: NameError scheduler_gui -> sampler_gui at line 2231
Browse files- Variable was named sampler_gui (line 1607), not scheduler_gui
- Fixes crash on startup when defining sampler_selector_gui.change outputs
app.py
CHANGED
|
@@ -2228,7 +2228,7 @@ with gr.Blocks(elem_id="main", fill_width=True, fill_height=False) as app:
|
|
| 2228 |
fn=set_sampler_settings,
|
| 2229 |
inputs=[sampler_selector_gui],
|
| 2230 |
outputs=[
|
| 2231 |
-
steps_gui, cfg_gui,
|
| 2232 |
schedule_prediction_type_gui,
|
| 2233 |
],
|
| 2234 |
)
|
|
|
|
| 2228 |
fn=set_sampler_settings,
|
| 2229 |
inputs=[sampler_selector_gui],
|
| 2230 |
outputs=[
|
| 2231 |
+
steps_gui, cfg_gui, sampler_gui, schedule_type_gui,
|
| 2232 |
schedule_prediction_type_gui,
|
| 2233 |
],
|
| 2234 |
)
|