mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
fix ruff - set comprehension
This commit is contained in:
parent
f207eb7a0d
commit
524d6a4dba
@ -46,8 +46,8 @@ def add_axis_options():
|
||||
xyz_grid.AxisOption("[Hypertile] VAE Max Tile Size", int, int_applier("hypertile_max_tile_vae", 0, 512)),
|
||||
xyz_grid.AxisOption("[Hypertile] VAE Swap Size", int, int_applier("hypertile_swap_size_vae", 0, 64)),
|
||||
]
|
||||
set_a = set(opt.label for opt in xyz_grid.axis_options)
|
||||
set_b = set(opt.label for opt in extra_axis_options)
|
||||
set_a = {opt.label for opt in xyz_grid.axis_options}
|
||||
set_b = {opt.label for opt in extra_axis_options}
|
||||
if set_a.intersection(set_b):
|
||||
return
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user