fix ruff in hypertile_xyz.py

This commit is contained in:
aria1th 2023-11-27 22:11:28 +09:00
parent 601a7b4ce5
commit f207eb7a0d
1 changed files with 2 additions and 2 deletions

View File

@ -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