[CI/Build] drop support for Python 3.8 EOL (#8464)
Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
This commit is contained in:
@@ -812,7 +812,7 @@ class AsyncLLMEngine(EngineClient):
|
||||
async def run_engine_loop(engine_ref: ReferenceType):
|
||||
"""We use a weakref to the engine so that the running loop
|
||||
doesn't prevent the engine being garbage collected."""
|
||||
engine: Optional["AsyncLLMEngine"] = engine_ref()
|
||||
engine: Optional[AsyncLLMEngine] = engine_ref()
|
||||
if not engine:
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user