Skip to content

Commit

Permalink
fix 39
Browse files Browse the repository at this point in the history
Signed-off-by: Ruiyang Wang <[email protected]>
  • Loading branch information
rynewang committed Sep 17, 2024
1 parent 6e377b4 commit 96796af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/ray/dashboard/modules/job/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ async def anext_polyfill(iterator):


# Use the built-in anext() for Python 3.10+, otherwise use our polyfilled function
anext = anext if sys.version_info >= (3, 10) else anext_polyfill
if sys.version_info < (3, 10):
anext = anext_polyfill


@pytest.fixture
Expand Down

0 comments on commit 96796af

Please sign in to comment.