Skip to content

Commit

Permalink
Fix _extract_partitions function.
Browse files Browse the repository at this point in the history
  • Loading branch information
csadorf committed Sep 12, 2023
1 parent b4c34ef commit ed1040d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cuml/dask/common/part_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def _extract_partitions(dask_obj, client=None):

yield wait(parts)

key_to_part = [(str(part.key), part) for part in parts]
key_to_part = [(part.key, part) for part in parts]
who_has = yield client.who_has(parts)

raise gen.Return(
Expand Down

0 comments on commit ed1040d

Please sign in to comment.