Commit f207eb7a authored by aria1th's avatar aria1th

fix ruff in hypertile_xyz.py

parent 601a7b4c
......@@ -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 = set(opt.label for opt in xyz_grid.axis_options)
set_b = set(opt.label for opt in extra_axis_options)
if set_a.intersection(set_b):
return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment