From e72b02db28e1d4f236c93b3a258d1e19a63c682a Mon Sep 17 00:00:00 2001 From: b8zhong Date: Thu, 18 Dec 2025 15:55:02 -0800 Subject: [PATCH] tiny fix lint on main (#15424) --- python/sglang/bench_serving.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/sglang/bench_serving.py b/python/sglang/bench_serving.py index 60ccb3b84..4b6568aaf 100644 --- a/python/sglang/bench_serving.py +++ b/python/sglang/bench_serving.py @@ -936,9 +936,7 @@ def download_and_cache_hf_file( """Download a file from Hugging Face and cache it locally.""" from huggingface_hub import hf_hub_download - return hf_hub_download( - repo_id=repo_id, filename=filename, repo_type=repo_type - ) + return hf_hub_download(repo_id=repo_id, filename=filename, repo_type=repo_type) def download_and_cache_file(url: str, filename: Optional[str] = None):