Update deprecated Python 3.8 typing (#13971)

This commit is contained in:
Harry Mellor
2025-03-03 01:34:51 +00:00
committed by GitHub
parent bf33700ecd
commit cf069aa8aa
300 changed files with 2294 additions and 2347 deletions

View File

@@ -4,7 +4,6 @@ Script to test add_lora, remove_lora, pin_lora, list_loras functions.
"""
import os
from typing import List
import pytest
@@ -46,7 +45,7 @@ def test_lora_functions_sync():
llm = LLM.get_engine_class().from_engine_args(engine_args)
def run_check(fn, args, expected: List):
def run_check(fn, args, expected: list):
fn(args)
assert set(llm.list_loras()) == set(expected)
@@ -105,7 +104,7 @@ async def test_lora_functions_async():
gpu_memory_utilization=0.8,
enforce_eager=True)
async def run_check(fn, args, expected: List):
async def run_check(fn, args, expected: list):
await fn(args)
assert set(await llm.list_loras()) == set(expected)