Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
f93e3480
Unverified
Commit
f93e3480
authored
Oct 15, 2025
by
Cyrus Leung
Committed by
GitHub
Oct 15, 2025
Browse files
[Misc] Remove `isort` and `yapf` ignores (#26888)
Signed-off-by:
DarkLight1337
<
tlleungac@connect.ust.hk
>
parent
f54f8512
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
10 deletions
+2
-10
tests/v1/engine/conftest.py
tests/v1/engine/conftest.py
+1
-2
tests/v1/tpu/test_topk_topp_sampler.py
tests/v1/tpu/test_topk_topp_sampler.py
+0
-3
vllm/model_executor/layers/quantization/compressed_tensors/schemes/__init__.py
...ayers/quantization/compressed_tensors/schemes/__init__.py
+1
-0
vllm/model_executor/models/qwen3_omni_moe_thinker.py
vllm/model_executor/models/qwen3_omni_moe_thinker.py
+0
-5
No files found.
tests/v1/engine/conftest.py
View file @
f93e3480
...
@@ -6,6 +6,7 @@ import torch
...
@@ -6,6 +6,7 @@ import torch
from
transformers
import
AutoTokenizer
from
transformers
import
AutoTokenizer
from
tests.v1.engine.utils
import
(
from
tests.v1.engine.utils
import
(
FULL_STRINGS
,
NUM_PROMPT_LOGPROBS_UNDER_TEST
,
NUM_PROMPT_LOGPROBS_UNDER_TEST
,
NUM_SAMPLE_LOGPROBS_UNDER_TEST
,
NUM_SAMPLE_LOGPROBS_UNDER_TEST
,
PROMPT_LEN
,
PROMPT_LEN
,
...
@@ -18,8 +19,6 @@ from vllm.engine.arg_utils import EngineArgs
...
@@ -18,8 +19,6 @@ from vllm.engine.arg_utils import EngineArgs
from
...distributed.conftest
import
publisher_config
,
random_port
# noqa: F401
from
...distributed.conftest
import
publisher_config
,
random_port
# noqa: F401
from
tests.v1.engine.utils
import
FULL_STRINGS
# isort: skip
EngineCoreSampleLogprobsType
=
list
[
tuple
[
torch
.
Tensor
,
torch
.
Tensor
]]
EngineCoreSampleLogprobsType
=
list
[
tuple
[
torch
.
Tensor
,
torch
.
Tensor
]]
EngineCorePromptLogprobsType
=
tuple
[
torch
.
Tensor
,
torch
.
Tensor
]
EngineCorePromptLogprobsType
=
tuple
[
torch
.
Tensor
,
torch
.
Tensor
]
...
...
tests/v1/tpu/test_topk_topp_sampler.py
View file @
f93e3480
...
@@ -8,10 +8,7 @@ import torch_xla
...
@@ -8,10 +8,7 @@ import torch_xla
from
vllm.platforms
import
current_platform
from
vllm.platforms
import
current_platform
from
vllm.v1.sample.ops.topk_topp_sampler
import
apply_top_k_top_p
from
vllm.v1.sample.ops.topk_topp_sampler
import
apply_top_k_top_p
# isort: off
from
vllm.v1.sample.tpu.sampler
import
apply_top_k_top_p
as
apply_top_k_top_p_tpu
from
vllm.v1.sample.tpu.sampler
import
apply_top_k_top_p
as
apply_top_k_top_p_tpu
# isort: on
if
not
current_platform
.
is_tpu
():
if
not
current_platform
.
is_tpu
():
pytest
.
skip
(
"This test needs a TPU."
,
allow_module_level
=
True
)
pytest
.
skip
(
"This test needs a TPU."
,
allow_module_level
=
True
)
...
...
vllm/model_executor/layers/quantization/compressed_tensors/schemes/__init__.py
View file @
f93e3480
...
@@ -15,6 +15,7 @@ from .compressed_tensors_w8a8_int8 import CompressedTensorsW8A8Int8
...
@@ -15,6 +15,7 @@ from .compressed_tensors_w8a8_int8 import CompressedTensorsW8A8Int8
from
.compressed_tensors_w8a16_fp8
import
CompressedTensorsW8A16Fp8
from
.compressed_tensors_w8a16_fp8
import
CompressedTensorsW8A16Fp8
from
.compressed_tensors_wNa16
import
WNA16_SUPPORTED_BITS
,
CompressedTensorsWNA16
from
.compressed_tensors_wNa16
import
WNA16_SUPPORTED_BITS
,
CompressedTensorsWNA16
# This avoids circular import error
from
.compressed_tensors_24
import
CompressedTensors24
# isort: skip
from
.compressed_tensors_24
import
CompressedTensors24
# isort: skip
__all__
=
[
__all__
=
[
...
...
vllm/model_executor/models/qwen3_omni_moe_thinker.py
View file @
f93e3480
...
@@ -80,17 +80,12 @@ from .interfaces import (
...
@@ -80,17 +80,12 @@ from .interfaces import (
SupportsMultiModal
,
SupportsMultiModal
,
SupportsPP
,
SupportsPP
,
)
)
# yapf conflicts with isort for this block
# yapf: disable
from
.qwen2_5_omni_thinker
import
(
from
.qwen2_5_omni_thinker
import
(
Qwen2_5OmniConditionalGenerationMixin
,
Qwen2_5OmniConditionalGenerationMixin
,
Qwen2_5OmniThinkerDummyInputsBuilder
,
Qwen2_5OmniThinkerDummyInputsBuilder
,
Qwen2_5OmniThinkerMultiModalProcessor
,
Qwen2_5OmniThinkerMultiModalProcessor
,
Qwen2_5OmniThinkerProcessingInfo
,
Qwen2_5OmniThinkerProcessingInfo
,
)
)
# yapf: enable
from
.qwen2_5_vl
import
(
from
.qwen2_5_vl
import
(
Qwen2_5_VisionAttention
,
Qwen2_5_VisionAttention
,
Qwen2_5_VisionRotaryEmbedding
,
Qwen2_5_VisionRotaryEmbedding
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment