Skip to content

Commit 109c48f

Browse files
FIX-#2688: Address comments
Signed-off-by: Devin Petersohn <devin.petersohn@gmail.com>
1 parent 877f5ff commit 109c48f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modin/experimental/engines/omnisci_on_ray/frame/axis_partition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(self, list_of_blocks):
2525
self.list_of_blocks = [obj.oid for obj in list_of_blocks]
2626

2727
partition_type = OmnisciOnRayFramePartition
28-
instance_type = ray.ObjectID
28+
instance_type = ray.ObjectRef
2929

3030

3131
class OmnisciOnRayFrameColumnPartition(OmnisciOnRayFrameAxisPartition):

modin/experimental/engines/omnisci_on_ray/frame/partition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class OmnisciOnRayFramePartition(BaseFramePartition):
2323
def __init__(
2424
self, object_id=None, frame_id=None, arrow_table=None, length=None, width=None
2525
):
26-
assert type(object_id) is ray.ObjectID
26+
assert type(object_id) is ray.ObjectRef
2727

2828
self.oid = object_id
2929
self.frame_id = frame_id

0 commit comments

Comments
 (0)