Skip to content

Commit

Permalink
FIX-modin-project#2844: Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <devin.petersohn@gmail.com>
  • Loading branch information
devin-petersohn committed Mar 11, 2021
1 parent 0472a92 commit 470880d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modin/engines/ray/pandas_on_ray/frame/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
from ray.worker import RayTaskError
from ray.services import get_node_ip_address
from packaging import version

ObjectIDType = ray.ObjectRef
if version.parse(ray.__version__) >= version.parse('1.2.0'):
if version.parse(ray.__version__) >= version.parse("1.2.0"):
from ray.util.client.common import ClientObjectRef
ObjectIDType = (ray.ObjectRef, ClientObjectRef)


ObjectIDType = (ray.ObjectRef, ClientObjectRef)


class PandasOnRayFramePartition(BaseFramePartition):
Expand Down

0 comments on commit 470880d

Please sign in to comment.