Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fzyzcjy committed Jan 12, 2025
1 parent 765213e commit 136fac9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/sglang/srt/orchestration/std/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import zmq
import zmq.asyncio
from fastapi import BackgroundTasks

from sglang.srt.aio_rwlock import RWLock
from sglang.srt.managers.generation_manager import GenerationManager
from sglang.srt.managers.io_struct import (
Expand Down Expand Up @@ -344,7 +345,7 @@ async def handle_loop(self):
recv_obj = await self.recv_from_detokenizer.recv_pyobj()
self._dispatcher(recv_obj)
except Exception as e:
logger.warning(f'Error in handle_loop: {e}')
logger.warning(f"Error in handle_loop: {e}")
traceback.print_exc()
raise

Expand Down

0 comments on commit 136fac9

Please sign in to comment.