Skip to content

Commit aca3244

Browse files
committed
fix format
1 parent 2cb141e commit aca3244

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/llmcompressor/modeling/prepare.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
from llmcompressor.modeling.qwen3_moe import replace as replace_Qwen3MoE
99

1010
try:
11-
from llmcompressor.modeling.qwen3_vl_moe import replace as replace_Qwen3VLMoE
1211
from llmcompressor.modeling.qwen3_next_moe import replace as replace_Qwen3NextMoE
12+
from llmcompressor.modeling.qwen3_vl_moe import replace as replace_Qwen3VLMoE
1313
except ImportError:
1414
logger.warning(
1515
"Qwen3-VL-MoE and Qwen3-Next support is not available. "
1616
"Please ensure that you have the correct version of transformers installed."
1717
)
1818
replace_Qwen3VLMoE = None
1919
replace_Qwen3NextMoE = None
20-
20+
2121
from llmcompressor.utils.helpers import patch_attr
2222

2323
__all__ = ["replace_modules_for_calibration"]

0 commit comments

Comments
 (0)