Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tofarr committed Nov 19, 2024
1 parent ec21259 commit 90f59b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhands/server/session/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ async def dispatch(self, data: dict):
async def send(self, data: dict[str, object]) -> bool:
task = self.loop.create_task(self._send(data))
await task
return task.result
return task.result()

async def _send(self, data: dict[str, object]) -> bool:
try:
Expand Down

0 comments on commit 90f59b1

Please sign in to comment.