Stable-Diffusion\extensions\ebsynth_utility\scripts\ui.py:11:
GradioDeprecationWarning: The `style` method is deprecated. Please set these arguments in the constructor instead.
with gr.Row().style(equal_height=False):
Change code:
with gr.Row().style(equal_height=False):
to
with gr.Row(equal_height=False):
Change code:
with gr.Row().style(equal_height=False):
towith gr.Row(equal_height=False):