Unverified Commit 7f83b4ee authored by Jialin Ouyang's avatar Jialin Ouyang Committed by GitHub
Browse files

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


Signed-off-by: default avatarJialin Ouyang <Jialin.Ouyang@gmail.com>
parent 5c3bae1a
......@@ -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,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment