fix: Use is not None instead of != None for None checks. (#5687)

This commit is contained in:
vzed
2025-04-26 22:26:57 -04:00
committed by GitHub
parent a21ef36352
commit 094891c01a
2 changed files with 3 additions and 3 deletions

View File

@@ -1000,7 +1000,7 @@ async def benchmark(
# Use the first request for all warmup iterations
test_prompt, test_prompt_len, test_output_len = input_requests[0]
if lora_names != None and len(lora_names) != 0:
if lora_names is not None and len(lora_names) != 0:
lora_name = lora_names[0]
else:
lora_name = None
@@ -1060,7 +1060,7 @@ async def benchmark(
tasks: List[asyncio.Task] = []
async for request in get_request(input_requests, request_rate):
prompt, prompt_len, output_len = request
if lora_names != None and len(lora_names) != 0:
if lora_names is not None and len(lora_names) != 0:
idx = random.randint(0, len(lora_names) - 1)
lora_name = lora_names[idx]
else:

View File

@@ -113,7 +113,7 @@ def completion_template_exists(template_name: str) -> bool:
def is_completion_template_defined() -> bool:
global completion_template_name
return completion_template_name != None
return completion_template_name is not None
def generate_completion_prompt_from_request(request: ChatCompletionRequest) -> str: