Skip to content

Commit 3ca8bb8

Browse files
chore(backend): ruff C420
1 parent dedacf1 commit 3ca8bb8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/backend/flux/controlnet/test_state_dict_utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525
)
2626
def test_is_state_dict_xlabs_controlnet(sd_shapes: dict[str, list[int]], expected: bool):
27-
sd = {k: None for k in sd_shapes}
27+
sd = dict.fromkeys(sd_shapes)
2828
assert is_state_dict_xlabs_controlnet(sd) == expected
2929

3030

@@ -37,7 +37,7 @@ def test_is_state_dict_xlabs_controlnet(sd_shapes: dict[str, list[int]], expecte
3737
],
3838
)
3939
def test_is_state_dict_instantx_controlnet(sd_keys: list[str], expected: bool):
40-
sd = {k: None for k in sd_keys}
40+
sd = dict.fromkeys(sd_keys)
4141
assert is_state_dict_instantx_controlnet(sd) == expected
4242

4343

tests/backend/flux/ip_adapter/test_xlabs_ip_adapter_flux.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@pytest.mark.parametrize("sd_shapes", [xlabs_flux_ip_adapter_sd_shapes, xlabs_flux_ip_adapter_v2_sd_shapes])
2020
def test_is_state_dict_xlabs_ip_adapter(sd_shapes: dict[str, list[int]]):
2121
# Construct a dummy state_dict.
22-
sd = {k: None for k in sd_shapes}
22+
sd = dict.fromkeys(sd_shapes)
2323

2424
assert is_state_dict_xlabs_ip_adapter(sd)
2525

0 commit comments

Comments
 (0)