[Misc] Remove isort and yapf ignores (#26888)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
This commit is contained in:
Cyrus Leung
2025-10-15 20:09:03 +08:00
committed by GitHub
parent f54f85129e
commit f93e348010
4 changed files with 2 additions and 10 deletions

View File

@@ -8,10 +8,7 @@ import torch_xla
from vllm.platforms import current_platform
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
# isort: on
if not current_platform.is_tpu():
pytest.skip("This test needs a TPU.", allow_module_level=True)