Skip to content

Commit

Permalink
fix: Resolve mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol committed Apr 4, 2024
1 parent f5aaea6 commit 25aa350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ai/backend/client/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _asyncio_run(coro, *, debug=False):
if hasattr(asyncio, "run"): # Python 3.7+
asyncio_run = asyncio.run
else:
asyncio_run = _asyncio_run
asyncio_run = _asyncio_run # type: ignore[assignment]


def asyncio_run_forever(server_context, *, debug=False):
Expand Down

0 comments on commit 25aa350

Please sign in to comment.