(self, is_img2img)
| 19 | return True |
| 20 | |
| 21 | def ui(self, is_img2img): |
| 22 | gr.HTML() # Work around a Gradio bug |
| 23 | with gr.Column(variant='panel'): |
| 24 | gr.HTML() # Work around a Gradio bug |
| 25 | ret = common_ui.main_ui_panel(False) |
| 26 | ret += ret.enkey_tail() |
| 27 | return ret.enkey_body() |
| 28 | |
| 29 | # run from script in txt2img or img2img |
| 30 | def run(self, p, *inputs): |
nothing calls this directly
no test coverage detected