Skip to content

Commit

Permalink
FIX-#2688: Address comments
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <[email protected]>
  • Loading branch information
devin-petersohn committed Feb 5, 2021
1 parent 877f5ff commit 109c48f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, list_of_blocks):
self.list_of_blocks = [obj.oid for obj in list_of_blocks]

partition_type = OmnisciOnRayFramePartition
instance_type = ray.ObjectID
instance_type = ray.ObjectRef


class OmnisciOnRayFrameColumnPartition(OmnisciOnRayFrameAxisPartition):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class OmnisciOnRayFramePartition(BaseFramePartition):
def __init__(
self, object_id=None, frame_id=None, arrow_table=None, length=None, width=None
):
assert type(object_id) is ray.ObjectID
assert type(object_id) is ray.ObjectRef

self.oid = object_id
self.frame_id = frame_id
Expand Down

0 comments on commit 109c48f

Please sign in to comment.