[Easy] Get rid of unnecessary paraenthesis in kv_cache_manager (#26842)

Signed-off-by: Jialin Ouyang <Jialin.Ouyang@gmail.com>
This commit is contained in:
Jialin Ouyang 2025-10-15 02:17:43 -07:00 committed by GitHub
parent 5c3bae1a6a
commit 7f83b4ee8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -219,7 +219,7 @@ class KVCacheManager:
self.prefix_cache_stats.queries += request.num_tokens
self.prefix_cache_stats.hits += num_new_computed_tokens
return (self.create_kv_cache_blocks(computed_blocks), num_new_computed_tokens)
return self.create_kv_cache_blocks(computed_blocks), num_new_computed_tokens
def allocate_slots(
self,